Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.praison.ai/llms.txt

Use this file to discover all available pages before exploring further.

is_numeric_string

Function
This function is defined in the parse_utils module.
Check if a string is numeric. O(1) operation.

Signature

def is_numeric_string(value: &str) -> bool

Parameters

value
&str
required
No description available.

Returns

Returns
bool
The result of the operation.

Uses

  • chars
  • all
  • is_ascii_digit

Source

View on GitHub

praisonai/src/parity/parse_utils.rs at line 90