Returns whether error_union contains an error.
error_union
pub fn isError(error_union: anytype) bool
pub fn isError(error_union: anytype) bool { return if (error_union) |_| false else |_| true; }