Add ByCodePoint
This commit is contained in:
parent
8915a0c7a7
commit
16cf8478cf
@ -1116,6 +1116,7 @@ struct String
|
|||||||
* Comparison for equality.
|
* Comparison for equality.
|
||||||
*
|
*
|
||||||
* Params:
|
* Params:
|
||||||
|
* S = Right hand side type.
|
||||||
* that = The string to compare with.
|
* that = The string to compare with.
|
||||||
*
|
*
|
||||||
* Returns: A positive number if $(D_KEYWORD this) is lexicographically
|
* Returns: A positive number if $(D_KEYWORD this) is lexicographically
|
||||||
@ -1127,26 +1128,17 @@ struct String
|
|||||||
return cmp(this.data[0 .. length], that.data[0 .. that.length]);
|
return cmp(this.data[0 .. length], that.data[0 .. that.length]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/// Ditto.
|
||||||
* Comparison for equality.
|
int opCmp(S)(ByCodeUnit!S that) const @trusted
|
||||||
*
|
if (is(Unqual!S == char))
|
||||||
* Params:
|
|
||||||
* R = Right hand side type.
|
|
||||||
* that = Right hand side string range.
|
|
||||||
*
|
|
||||||
* Returns: A positive number if $(D_KEYWORD this) is lexicographically
|
|
||||||
* greater than $(D_PARAM that), if equal `0`, else `-1`.
|
|
||||||
*/
|
|
||||||
int opCmp(E)(ByCodeUnit!E that) const @trusted
|
|
||||||
if (is(Unqual!E == char))
|
|
||||||
{
|
{
|
||||||
return cmp(this.data[0 .. length],
|
return cmp(this.data[0 .. length],
|
||||||
that.begin[0 .. that.end - that.begin]);
|
that.begin[0 .. that.end - that.begin]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Ditto.
|
/// Ditto.
|
||||||
int opCmp(E)(ByCodePoint!E that) const @trusted
|
int opCmp(S)(ByCodePoint!S that) const @trusted
|
||||||
if (is(Unqual!E == char))
|
if (is(Unqual!S == char))
|
||||||
{
|
{
|
||||||
return cmp(this.data[0 .. length],
|
return cmp(this.data[0 .. length],
|
||||||
that.begin[0 .. that.end - that.begin]);
|
that.begin[0 .. that.end - that.begin]);
|
||||||
@ -1169,6 +1161,7 @@ struct String
|
|||||||
* Comparison for equality.
|
* Comparison for equality.
|
||||||
*
|
*
|
||||||
* Params:
|
* Params:
|
||||||
|
* S = Right hand side type.
|
||||||
* that = The string to compare with.
|
* that = The string to compare with.
|
||||||
*
|
*
|
||||||
* Returns: $(D_KEYWORD true) if the strings are equal, $(D_KEYWORD false)
|
* Returns: $(D_KEYWORD true) if the strings are equal, $(D_KEYWORD false)
|
||||||
@ -1184,22 +1177,21 @@ struct String
|
|||||||
* Comparison for equality.
|
* Comparison for equality.
|
||||||
*
|
*
|
||||||
* Params:
|
* Params:
|
||||||
* R = Right hand side type.
|
|
||||||
* that = Right hand side string range.
|
* that = Right hand side string range.
|
||||||
*
|
*
|
||||||
* Returns: $(D_KEYWORD true) if the string and the range are equal,
|
* Returns: $(D_KEYWORD true) if the string and the range are equal,
|
||||||
* $(D_KEYWORD false) otherwise.
|
* $(D_KEYWORD false) otherwise.
|
||||||
*/
|
*/
|
||||||
bool opEquals(E)(ByCodeUnit!E that) const @trusted
|
bool opEquals(S)(ByCodeUnit!S that) const @trusted
|
||||||
if (is(Unqual!E == char))
|
if (is(Unqual!S == char))
|
||||||
{
|
{
|
||||||
return equal(this.data[0 .. length],
|
return equal(this.data[0 .. length],
|
||||||
that.begin[0 .. that.end - that.begin]);
|
that.begin[0 .. that.end - that.begin]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Ditto.
|
/// Ditto.
|
||||||
bool opEquals(E)(ByCodePoint!E that) const @trusted
|
bool opEquals(S)(ByCodePoint!S that) const @trusted
|
||||||
if (is(Unqual!E == char))
|
if (is(Unqual!S == char))
|
||||||
{
|
{
|
||||||
return equal(this.data[0 .. length],
|
return equal(this.data[0 .. length],
|
||||||
that.begin[0 .. that.end - that.begin]);
|
that.begin[0 .. that.end - that.begin]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user