Searched refs:Reversible (Results 1 – 25 of 46) sorted by relevance
12
/third_party/boost/libs/mpl/doc/src/refmanual/ |
D | copy.rst | 41 |Reversible Algorithm| 59 |Semantics disclaimer...| |Reversible Algorithm|. 103 |Transformation Algorithms|, |Reversible Algorithm|, |reverse_copy|, |copy_if|, |transform|
|
D | reverse_copy.rst | 40 |Reversible Algorithm| 58 |Semantics disclaimer...| |Reversible Algorithm|. 102 |Transformation Algorithms|, |Reversible Algorithm|, |copy|, |reverse_copy_if|, |reverse_transform|
|
D | reverse_remove.rst | 43 |Reversible Algorithm| 63 |Semantics disclaimer...| |Reversible Algorithm|. 104 |Transformation Algorithms|, |Reversible Algorithm|, |remove|, |reverse_remove_if|,
|
D | reverse_replace_if.rst | 44 |Reversible Algorithm| 66 |Semantics disclaimer...| |Reversible Algorithm|. 115 |Transformation Algorithms|, |Reversible Algorithm|, |replace_if|, |reverse_replace|, |remove_if|, …
|
D | reverse_replace.rst | 43 |Reversible Algorithm| 65 |Semantics disclaimer...| |Reversible Algorithm|. 107 |Transformation Algorithms|, |Reversible Algorithm|, |replace|, |reverse_replace_if|, |remove|, |re…
|
D | copy_if.rst | 42 |Reversible Algorithm| 62 |Semantics disclaimer...| |Reversible Algorithm|. 120 |Transformation Algorithms|, |Reversible Algorithm|, |reverse_copy_if|, |copy|, |remove_if|, |repla…
|
D | reverse_remove_if.rst | 41 |Reversible Algorithm| 61 |Semantics disclaimer...| |Reversible Algorithm|. 114 |Transformation Algorithms|, |Reversible Algorithm|, |remove_if|, |reverse_remove|,
|
D | replace.rst | 43 |Reversible Algorithm| 65 |Semantics disclaimer...| |Reversible Algorithm|. 107 |Transformation Algorithms|, |Reversible Algorithm|, |reverse_replace|, |replace_if|, |remove|, |tr…
|
D | reverse_copy_if.rst | 42 |Reversible Algorithm| 62 |Semantics disclaimer...| |Reversible Algorithm|. 120 |Transformation Algorithms|, |Reversible Algorithm|, |copy_if|, |reverse_copy|, |remove_if|, |repla…
|
D | replace_if.rst | 44 |Reversible Algorithm| 66 |Semantics disclaimer...| |Reversible Algorithm|. 110 |Transformation Algorithms|, |Reversible Algorithm|, |reverse_replace_if|, |replace|, |remove_if|, …
|
D | remove.rst | 45 |Reversible Algorithm| 65 |Semantics disclaimer...| |Reversible Algorithm|. 106 |Transformation Algorithms|, |Reversible Algorithm|, |reverse_remove|, |remove_if|, |copy|, |replac…
|
D | remove_if.rst | 44 |Reversible Algorithm| 64 |Semantics disclaimer...| |Reversible Algorithm|. 117 |Transformation Algorithms|, |Reversible Algorithm|, |reverse_remove_if|, |remove|, |copy_if|, |rep…
|
D | reverse_partition.rst | 44 |Reversible Algorithm| 64 |Semantics disclaimer...| |Reversible Algorithm|. 113 |Transformation Algorithms|, |Reversible Algorithm|, |partition|, |reverse_stable_partition|, |sort|
|
D | partition.rst | 44 |Reversible Algorithm| 64 |Semantics disclaimer...| |Reversible Algorithm|. 113 |Transformation Algorithms|, |Reversible Algorithm|, |reverse_partition|, |stable_partition|, |sort|
|
D | ReversibleAlgorithm.rst | 1 .. Algorithms/Concepts//Reversible Algorithm 3 Reversible Algorithm 9 A |Reversible Algorithm| is a member of a pair of 27 |Reversible Algorithm|'s name, |s1...sn| are
|
D | unique.rst | 41 |Reversible Algorithm| 61 |Semantics disclaimer...| |Reversible Algorithm|. 126 |Transformation Algorithms|, |Reversible Algorithm|, |reverse_unique|, |remove|, |copy_if|, |replac…
|
D | sort.rst | 42 |Reversible Algorithm| 62 |Semantics disclaimer...| |Reversible Algorithm|. 130 |Transformation Algorithms|, |Reversible Algorithm|, |partition|
|
D | reverse_unique.rst | 41 |Reversible Algorithm| 61 |Semantics disclaimer...| |Reversible Algorithm|. 126 |Transformation Algorithms|, |Reversible Algorithm|, |unique|, |reverse_remove|,
|
D | stable_partition.rst | 46 |Reversible Algorithm| 66 |Semantics disclaimer...| |Reversible Algorithm|. 127 |Transformation Algorithms|, |Reversible Algorithm|, |reverse_stable_partition|, |partition|, |sort…
|
D | reverse_stable_partition.rst | 46 |Reversible Algorithm| 66 |Semantics disclaimer...| |Reversible Algorithm|. 127 |Transformation Algorithms|, |Reversible Algorithm|, |stable_partition|, |reverse_partition|, |sort…
|
D | reverse_transform.rst | 61 |Reversible Algorithm| 83 |Semantics disclaimer...| |Reversible Algorithm|. 158 |Transformation Algorithms|, |Reversible Algorithm|, |transform|, |reverse_copy|, |replace_if|
|
D | transform.rst | 60 |Reversible Algorithm| 82 |Semantics disclaimer...| |Reversible Algorithm|. 157 |Transformation Algorithms|, |Reversible Algorithm|, |reverse_transform|, |copy|, |replace_if|
|
D | front_inserter.rst | 89 |Algorithms|, |Inserter|, |Reversible Algorithm|, |[inserter]|, |back_inserter|, |push_front|
|
D | back_inserter.rst | 89 |Algorithms|, |Inserter|, |Reversible Algorithm|, |[inserter]|, |front_inserter|, |push_back|
|
/third_party/python/Lib/test/ |
D | test_collections.py | 23 from collections.abc import Hashable, Iterable, Iterator, Generator, Reversible 981 self.assertNotIsInstance(x, Reversible) 982 self.assertFalse(issubclass(type(x), Reversible), repr(type(x))) 986 self.assertNotIsInstance(x, Reversible) 987 self.assertFalse(issubclass(type(x), Reversible), repr(type(x))) 995 self.assertIsInstance(x, Reversible) 996 self.assertTrue(issubclass(type(x), Reversible), repr(type(x))) 998 self.assertTrue(issubclass(Sequence, Reversible), repr(Sequence)) 999 self.assertFalse(issubclass(Mapping, Reversible), repr(Mapping)) 1000 self.assertFalse(issubclass(MutableMapping, Reversible), repr(MutableMapping)) [all …]
|
12