Files
fsharp-prefix-form/Expression/Utils.fs
2021-01-14 19:34:21 +00:00

9 lines
205 B
Forth

namespace Expression.Internals
[<AutoOpen>]
module ActivePatterns =
let (|Int|_|) (c : char) : int option =
if '0' <= c && c <= '9' then
Some (int(c) - int('0'))
else None