Home
last modified time | relevance | path

Searched refs:front_index (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dconv.d2429 char front() const @property { return str[front_index]; } in front()
2430 char popFront() { return str[front_index++]; } in popFront()
2431 bool empty() const @property { return str.length <= front_index; } in empty()
2433 size_t front_index = 0; member
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dconv.d2803 char front() const @property { return str[front_index]; }
2804 char popFront() { return str[front_index++]; }
2805 bool empty() const @property { return str.length <= front_index; }
2807 size_t front_index = 0;