mirror of https://github.com/adamdruppe/arsd.git
Add toString for Nullable
This commit is contained in:
parent
2198db29e2
commit
6338acc439
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue