Why is alias U8 = Dtype.uint8 not a type?
Gives
expected a type, not a value on the U8 in the function signature. What am I missing?alias U8 = DType.uint8
@inline_always
fn is_digit(value: U8) -> Bool:
return value >= 48 && value <= 57expected a type, not a valueU8