mirror of https://github.com/adamdruppe/arsd.git
convenience method
This commit is contained in:
parent
399e9d723e
commit
af7d5339c8
4
xlsx.d
4
xlsx.d
|
|
@ -886,6 +886,10 @@ struct CellReference {
|
||||||
return CellReference(ret);
|
return CellReference(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string toString() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
int toColumnIndex() {
|
int toColumnIndex() {
|
||||||
size_t endSlice = name.length;
|
size_t endSlice = name.length;
|
||||||
foreach(idx, ch; name) {
|
foreach(idx, ch; name) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue