Type used to store the items.
Pop the back element from the range.
Pop the front element from the range.
Get number of items in the range.
Function used to compare items alphabetically.
//VFSDirs is a VFSRange of directories - VFSFiles of files. VFSDirs dirs; //Get the first directory. auto f = dirs.front; //Get the last directory. auto b = dirs.back; //Remove the first directory from the range (this will not remove the directory itself). dirs.popFront(); //Remove the last directory from the range (this will not remove the directory itself). dirs.popBack(); //Are there no files/directories ? bool empty = r.empty;
A bidirectional range of VFS items (files or directories).