lean4-htt/library/init/lean/options.lean
Leonardo de Moura a49de9ccd3 feat(library/init/lean): add kvmap
We use it to implement `expr.mdata` and `options`
2018-06-15 16:05:11 -07:00

17 lines
293 B
Text

/-
Copyright (c) 2018 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Authors: Sebastian Ullrich
-/
prelude
import init.lean.kvmap
universe u
namespace lean
def options := kvmap
def options.mk : options :=
{kvmap .}
end lean