Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
LCSB-BioCore
SBML.jl
Commits
04d041b9
Commit
04d041b9
authored
Mar 14, 2021
by
Miroslav Kratochvil
Browse files
document Maybe
parent
f2db233d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/structs.jl
View file @
04d041b9
"""
Maybe{X}
Type shortcut for "
`X`
or
nothing
" or "
nullable
`X`
" in javaspeak. Name
got inspired by our functional friends.
"""
const
Maybe
{
X
}
=
Union
{
Nothing
,
X
}
const
Maybe
{
X
}
=
Union
{
Nothing
,
X
}
"""
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment