phobos ~master (2024-10-03T07:50:27Z)
Dub
Repo
SortedRange.opBinaryRight
std
range
SortedRange
Like
contains
, but the value is specified before the range.
struct
SortedRange
(Range, alias pred = "a < b", SortedRangeOptions opt = SortedRangeOptions.assumeSorted)
bool
opBinaryRight
(
string
op
V
)
(
V
value
)
if
(
op
== "in" &&
isRandomAccessRange
!
Range
)
if
(
isInputRange
!
Range
&&
!
isInstanceOf
!(
SortedRange
,
Range
)
)
Meta
Source
See Implementation
std
range
SortedRange
functions
contains
equalRange
groupBy
lowerBound
opBinaryRight
opIndex
opSlice
popBack
popFront
release
trisect
upperBound
properties
back
empty
front
save
Like contains, but the value is specified before the range.