We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've found different implementations of as_string:
as_string
(1 => one), (2 => two)
Mutable_Map
ps_map
{2=two, 1=one}
mutable_tree_map
[(1,one), (2,two)]
hash_map
The text was updated successfully, but these errors were encountered:
I like this one: {(1 => one), ...}
{(1 => one), ...}
@simonvonhackewitz Can you find out how other languages do it?
Sorry, something went wrong.
python {1: 'one', 2: 'two'}
{1: 'one', 2: 'two'}
Java {1=one, 2=two}
{1=one, 2=two}
Haskell fromList [(1,"one"),(2,"two")]
fromList [(1,"one"),(2,"two")]
8abcace
Successfully merging a pull request may close this issue.
I've found different implementations of
as_string
:(1 => one), (2 => two)
Mutable_Map
,ps_map
{2=two, 1=one}
mutable_tree_map
[(1,one), (2,two)]
hash_map
The text was updated successfully, but these errors were encountered: