Skip to content

Commit

Permalink
Added prefixes to aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
jrtapsell committed Apr 3, 2018
1 parent c01e4e7 commit c7c64f8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/kotlin/jotlin/lang/Aliases.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

package jotlin.lang

typealias L<T> = MutableList<T>
typealias A<T> = Array<T>
typealias TL<T> = MutableList<T>
typealias TA<T> = Array<T>

typealias i = Int
typealias s = String
typealias l = Long
typealias Ti = Int
typealias Ts = String
typealias Tl = Long

typealias C<T> = ()->T
typealias TC<T> = ()->T

val D = "$"

0 comments on commit c7c64f8

Please sign in to comment.