Lines Matching refs:allowDuplicates
738 final class RedBlackTree(T, alias less = "a < b", bool allowDuplicates = false)
842 static if (allowDuplicates) in inout()
882 static if (!allowDuplicates) in _add()
909 static if (!allowDuplicates) in _add()
934 static if (allowDuplicates) in _add()
1127 static if (allowDuplicates)
1149 static if (allowDuplicates)
1174 static if (allowDuplicates)
1380 given which is in the container. If $(D allowDuplicates) is true,
1452 static if (allowDuplicates)
1586 static if (allowDuplicates) in equalRange()
1665 static if (allowDuplicates) in debug()
1825 allowDuplicates = Whether duplicates should be allowed (optional, default: false)
1836 auto redBlackTree(bool allowDuplicates, E)(E[] elems...) in redBlackTree() argument
1838 return new RedBlackTree!(E, "a < b", allowDuplicates)(elems); in redBlackTree()
1849 auto redBlackTree(alias less, bool allowDuplicates, E)(E[] elems...)
1855 return new RedBlackTree!(E, binaryFun!less, allowDuplicates)(elems);
1866 auto redBlackTree(bool allowDuplicates, Stuff)(Stuff range)
1869 return new RedBlackTree!(ElementType!Stuff, "a < b", allowDuplicates)(range);
1881 auto redBlackTree(alias less, bool allowDuplicates, Stuff)(Stuff range)
1888 return new RedBlackTree!(ElementType!Stuff, binaryFun!less, allowDuplicates)(range);