class Psych::ScalarScanner

def parse_int string

Experimental RBS support (using type sampling data from the type_fusion project).

def parse_int: (String string) -> Integer

This signature was generated using 4 samples from 1 application.

Parse and return an int from +string+
##
def parse_int string
  Integer(string.delete(',_'))
end