button ~master (2018-11-15T00:26:20Z)
Dub
Repo
Changes
util
change
Range for iterating over changes between two sorted ranges.
struct
Changes (
R1
R2
alias
pred
= "a < b"
)
if
(
isInputRange
!
R1
&&
isInputRange
!
R2
&&
is
(
ElementType
!
R1
==
ElementType
!
R2
)
) {
import
std
.
range
:
ElementType
;
;
import
std
.
traits
:
Unqual
;
;
import
std
.
typecons
:
Rebindable
;
;
this
(R1 prev, R2 next);
void
popFront
();
auto ref
front
[@property getter];
bool
empty
();
}
Constructors
this
this
(R1 prev, R2 next)
Undocumented in source.
Members
Functions
empty
bool
empty
()
Undocumented in source. Be warned that the author may not have intended to support it.
popFront
void
popFront
()
Undocumented in source. Be warned that the author may not have intended to support it.
Properties
front
auto ref
front
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
util
change
enums
ChangeType
functions
changes
structs
Change
Changes
Range for iterating over changes between two sorted ranges.