This page provides a comprehensive reference of type aliases used throughout the codebase for common collection types in Kotlin. These aliases simplify type declarations and improve code readability by providing shorter, more intuitive names for frequently used generic types.
Each alias entry includes its package location, the version from which it was introduced, the corresponding standard Kotlin/Java type it represents, and any generic type parameters where applicable.
<aside>
<img src="attachment:a3a56fc3-c53c-47ff-aacc-d7c34f62abfd:table_of_content.png" alt="attachment:a3a56fc3-c53c-47ff-aacc-d7c34f62abfd:table_of_content.png" width="40px" />
TABLE OF CONTENT
</aside>
Collections
:ij-kt-typealias: AnyList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ List<Any> |
:ij-kt-typealias: AnyMList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ MutableList<Any> |
:ij-kt-typealias: IntList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ List<Int> |
:ij-kt-typealias: IntMList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ MutableList<Int> |
:ij-kt-typealias: LongList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ List<Long> |
:ij-kt-typealias: LongMList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ MutableList<Long> |
:ij-kt-typealias: DoubleList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ List<Double> |
:ij-kt-typealias: DoubleMList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ MutableList<Double> |
:ij-kt-typealias: StringList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ List<String> |
:ij-kt-typealias: StringMList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ MutableList<String> |
:ij-kt-typealias: CharList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ List<Char> |
:ij-kt-typealias: CharMList
| Package |
‣ com.sigeosrl.utils |
| Since version |
1.0.0 |
| Corresponding |
‣ MutableList<Char> |
:ij-kt-typealias: MList<E>
| --- | --- |