pub fn isnumeric<D: Dimension>(
a: &StringArray<D>,
) -> FerrayResult<Array<bool, D>>Expand description
Return true where the string could be a valid numeric literal.
Matches numpy.strings.isnumeric (simplified — checks for
ASCII digit + decimal point + sign characters).