• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package kotlin
2 
3 class Array<T>
4 class IntArray
5 class CharArray
6 
7 /**
8  * Returns true if foo.
9  */
10 val IntArray.foo: Int = 0
11 
12 /**
13  * Returns true if foo.
14  */
15 val CharArray.foo: Int = 0
16 
17 /**
18  * Returns true if foo.
19  */
20 val <T> Array<T>.foo: Int = 0
21