Created
January 31, 2011 12:00
-
-
Save edoloughlin/803947 to your computer and use it in GitHub Desktop.
Why is the {:t 1} map elevated to the top level while other nested elements aren't?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user=> (flatten [ | |
:a 1 | |
:b [ | |
{:a [{:x 3} {:v 4}]} | |
{:t 1}]]) | |
(:a 1 :b {:a [{:x 3} {:v 4}]} {:t 1}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment