Sha256: e01a901d15998294c2f5f482866adbc6d5cfb169c65c9a36284eb1dbdead466c
Contents?: true
Size: 362 Bytes
Versions: 151
Compression:
Stored size: 362 Bytes
Contents
open Core let (>|>) f g x = f (g x) let acronym = let acronymChar = function | "" -> "" | s when String.uppercase s = s -> Char.to_string s.[0] | s -> Char.to_string (Char.uppercase s.[0]) ^ String.filter ~f:Char.is_uppercase (String.drop_prefix s 1) in String.concat ~sep:"" >|> List.map ~f:acronymChar >|> String.split_on_chars ~on:[' ';'-']
Version data entries
151 entries across 151 versions & 1 rubygems