Why3 Standard Library index


Option type

module Option

  type option 'a = None | Some 'a

  let predicate is_none (o: option 'a)
    ensures { result <-> o = None }
  = match o with None -> true | Some _ -> false end

end

module Map

  use Option

  function map (f: 'a -> 'b) (o: option 'a) : option 'b
  = match o with None -> None | Some x -> Some (f x) end

end

Generated by why3doc 1.7.1