Created
June 19, 2017 12:38
-
-
Save ezura/56357b4b8b8fb9eced76d821652ff3ac to your computer and use it in GitHub Desktop.
Set(List とかでも) のインスタンスを作るとき、要素数によって、作られてる実態が違うみたい…? #CodePiece #kotlin
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
| // elements.size == 0 | |
| object EmptySet : Set<Nothing> | |
| // elements.size == 1 | |
| java.util.Collections.singleton(element) | |
| // elements.size > 1 | |
| public typealias LinkedHashSet<E> = java.util.LinkedHashSet<E> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment