Created
December 12, 2017 12:09
-
-
Save tocttou/cae45b5009c8089ec3d4d5abff1fb343 to your computer and use it in GitHub Desktop.
This file contains 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
package | |
class FrequencyMap<K, Int>( | |
private val b: MutableMap<K, kotlin.Int>, | |
private val c: Map<K, kotlin.Int>) | |
: MutableMap<K, kotlin.Int> by b, Map<K, kotlin.Int> by c { | |
// Do something with b an c | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment