Sha256: 6f2cf64706d537aa87e1e03230cffc9014788f7e74ce89634daeca586d644c1b
Contents?: true
Size: 437 Bytes
Versions: 177
Compression:
Stored size: 437 Bytes
Contents
open Core.Std let digit_to_int c = match c with | '0'..'9' -> Some (int_of_char(c) - 48) | 'a'..'f' -> Some (Char.to_int(c) - 97 + 10) | 'A'..'F' -> Some (Char.to_int(c) - 97 + 10) | _ -> None let to_int hex_str = let rec go acc = function | [] -> acc | c::cs -> match digit_to_int c with | Some n -> go (acc * 16 + n) cs | None -> 0 in go 0 (String.to_list hex_str)
Version data entries
177 entries across 177 versions & 1 rubygems