module Infix: sig .. end
sig
end
val (|?) : 'a option -> 'a -> 'a
'a option -> 'a -> 'a
BatOption.default
None |? 10
10
Some "foo" |? "bar"
"foo"