Add toString for Nullable

This commit is contained in:
vabenil 2022-10-24 17:50:32 +03:00
parent 2198db29e2
commit 6338acc439
1 changed files with 11 additions and 0 deletions

View File

@ -50,6 +50,17 @@ struct Nullable(T) {
}
T toArsdJsvar() { return value; }
string toString() {
import std.conv;
if (isNull) {
return "Nullable.null";
}
else {
return to!string(this.value);
}
}
}
struct Timestamp {