Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 490 Bytes

File metadata and controls

13 lines (10 loc) · 490 Bytes

image

collection

基本接口

● Iterable要支持for、拆包和其他迭代方式;_iter_
● Sized要支持内置函数_len_
● Container要支持in运算符。_contain_

专用接口

● Sequence规范list和str等内置类型的接口;
● Mapping被dict、collections.defaultdict等实现;
● Set是set和frozenset两个内置类型的接口。