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; }