Function isAnon [src]
Prototype
pub fn isAnon(self: String) bool Parameters
self: String Source
pub fn isAnon(self: String) bool {
assert(self != .none);
return self.toIndex() == null;
} pub fn isAnon(self: String) bool self: String pub fn isAnon(self: String) bool {
assert(self != .none);
return self.toIndex() == null;
}