ExtT

Represents a file extension.

Constructors

this
this(immutable(C)[] extension)

Main constructor.

Members

Functions

opCast
T opCast()

Convert to bool

opCmp
int opCmp(ExtT!C other)
int opCmp(string other)
opEquals
int opEquals(ExtT!C other)

Compare using OS-specific case-sensitivity rules. If you want to force case-sensitive or case-insensistive, then call filenameCmp instead.

opEquals
int opEquals(ExtT!C other)
int opEquals(string other)

Compare using OS-specific case-sensitivity rules. If you want to force case-sensitive or case-insensistive, then call filenameCmp instead.

toRawString
immutable(C)[] toRawString()

Convert to string, wstring or dstring, depending on the type of Ext.

toString
string toString()

Convert to string.

Meta