25 | | * Added `Stack.clone` extension method that preserves the ordering of the stack elements. |
26 | | * Added `String.limitLength(maxLength as int, suffix as String?) as String` extension method. |
| 25 | * Added extension methods: |
| 26 | * interface IList |
| 27 | * def addRange(items as System.Collections.IEnumerable) |
| 28 | * interface IList<of T> |
| 29 | * def addRange(items as IEnumerable<of T>) |
| 30 | * def pop as T |
| 31 | * class Stack<of T>: def clone as Stack<of T> |
| 32 | * class String |
| 33 | * def before(sep as String) as String |
| 34 | * def after(sep as String) as String |
| 35 | * def count(substring as String) as int |
| 36 | * def limitLength(maxLength as int, suffix as String?) as String |
| 37 | * def repeat(times as int) as String |