Searched refs:iterable (Results 1 – 3 of 3) sorted by relevance
26 def __init__(self, iterable=(), key=None): argument29 decorated = sorted((key(item), item) for item in iterable)
352 auto iterable = StringSplit::Iterable(what, separator); in IterableSplitStringViewVec() local353 std::vector<std::string> vec{iterable.begin(), iterable.end()}; in IterableSplitStringViewVec()1085 PartIterable iterable = IterateParts(); in PartsList() local1087 std::vector<std::string_view> parts{iterable.begin(), iterable.end()}; in PartsList()
664 def enumerate_with_last(iterable): argument675 it = (i for i in iterable)