Documentation
Lean
.
Modifiers
Search
return to top
source
Imports
Lean.Environment
Lean.PrivateName
Imported by
Lean
.
protectedExt
Lean
.
addProtected
Lean
.
isProtected
Lean
.
mkPrivateName
Lean
.
isPrivateNameFromImportedModule
source
opaque
Lean
.
protectedExt
:
TagDeclarationExtension
source
def
Lean
.
addProtected
(env :
Environment
)
(n :
Name
)
:
Environment
Equations
Lean.addProtected
env
n
=
Lean.protectedExt
.
tag
env
n
Instances For
source
def
Lean
.
isProtected
(env :
Environment
)
(n :
Name
)
:
Bool
Equations
Lean.isProtected
env
n
=
Lean.protectedExt
.
isTagged
env
n
Instances For
source
def
Lean
.
mkPrivateName
(env :
Environment
)
(n :
Name
)
:
Name
Equations
Lean.mkPrivateName
env
n
=
(
Lean.privateHeader
++
env
.
mainModule
)
.
mkNum
0
++
n
Instances For
source
def
Lean
.
isPrivateNameFromImportedModule
(env :
Environment
)
(n :
Name
)
:
Bool
Equations
Lean.isPrivateNameFromImportedModule
env
n
=
match
Lean.privateToUserName?
n
with |
some
userName
=>
Lean.mkPrivateName
env
userName
!=
n
|
x
=>
false
Instances For