We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Similarly to the OCaml let open construct, we have:
let open
module L = FStar.List let example1 = let open L in rev (append [] []) let example2 = L (rev (append [] []))
the latter is slightly different from the OCaml syntax, which would be: L.(rev (append [] [])).
L.(rev (append [] []))