Ilya Gorbunov
|
e09c0ae2ff
|
Rename toMap { selector } to toMapBy.
#KT-6657
|
2015-10-08 17:48:47 +03:00 |
|
Ilya Gorbunov
|
db93532e7c
|
Deprecate merge and introduce instead zip with transform.
Add zip with transform for Strings.
|
2015-10-08 17:48:35 +03:00 |
|
Ilya Gorbunov
|
12d9beb3a4
|
Deprecate join (use joinToString instead)
#KT-6909
|
2015-10-08 17:48:33 +03:00 |
|
Ilya Gorbunov
|
c54ffe39b1
|
Drop deprecated API: String operations.
|
2015-10-07 22:36:41 +03:00 |
|
Ilya Gorbunov
|
0df3d37f88
|
Drop deprecated API.
|
2015-10-07 22:36:38 +03:00 |
|
Ilya Gorbunov
|
73e41fb216
|
StdLib cleanup: remove unused imports
|
2015-10-07 22:36:13 +03:00 |
|
Ilya Gorbunov
|
ff69b97030
|
StdLib cleanup: deprecated usages
|
2015-10-07 22:36:09 +03:00 |
|
Ilya Gorbunov
|
404b228954
|
StdLib cleanup: replace fails with assertFails
|
2015-10-07 22:36:06 +03:00 |
|
Denis Zharkov
|
a0e9754edc
|
Adjust js collections to size transformation
|
2015-10-07 08:46:33 +03:00 |
|
Ilya Gorbunov
|
74f39c2375
|
Provide LazyThreadSafetyMode.PUBLICATION: concurrent non-blocking initializations, single publication.
|
2015-09-25 21:49:46 +03:00 |
|
Ilya Gorbunov
|
379c39a2ef
|
Move ByteArray.inputStream() method from kotlin package to kotlin.io
|
2015-09-25 21:10:17 +03:00 |
|
Mikhail Glukhikh
|
86833c1a74
|
Migration to new backing field syntax
|
2015-09-22 10:15:52 +03:00 |
|
Stanislav Erokhin
|
8efbf4fc32
|
Fixed testdata -- removed package import
|
2015-09-18 21:00:20 +03:00 |
|
Denis Zharkov
|
5cecaa6f87
|
Get rid of deprecated annotations and modifiers in stdlib (besides JS)
|
2015-09-18 10:14:28 +03:00 |
|
Ilya Gorbunov
|
e95be9096e
|
Revert unification of operations on Array<T> and Array<out T> (copyOf, copyOfRange) which return the same type as the receiver.
Leave sortedArray, reversedArray and sliceArray only for covariant projection of array as the receiver.
|
2015-09-17 21:15:11 +03:00 |
|
Ilya Gorbunov
|
a63341b901
|
Some tests for assertion messages.
|
2015-09-08 10:28:15 +03:00 |
|
Ilya Gorbunov
|
f7c2f034b3
|
Remove usages of deprecated failsWith
|
2015-09-08 10:28:03 +03:00 |
|
Ilya Gorbunov
|
470fcc977c
|
Drop test DSL experiments.
|
2015-09-08 10:27:08 +03:00 |
|
Michael Nedzelsky
|
44691018ce
|
add explicit types for some top-level public val/var declarations in MapDelegationTest due KT-9072
|
2015-09-08 02:06:34 +03:00 |
|
Ilya Gorbunov
|
b5af83cb36
|
Drop deprecated StringTemplate from StdLib and move it to kotlin-jdbc, which is using it.
|
2015-09-07 19:36:25 +03:00 |
|
Mikhail Glukhikh
|
eab288bdd7
|
annotation() now has no arguments. Syntax migration to Retention / Repeatable / MustBeDocumented combination
Deprecated test for annotation(params) completion deleted. A lot of tests changed.
|
2015-09-04 19:21:12 +03:00 |
|
Denis Zharkov
|
31244edec9
|
Deprecate deprecated in favor of Deprecated
|
2015-09-04 18:19:31 +03:00 |
|
Ilya Gorbunov
|
c4b18d8fb8
|
Special case of slice for int ranges, sliceArray returning array.
#KT-8711
|
2015-09-02 20:22:38 +03:00 |
|
Ilya Gorbunov
|
faa26cdb25
|
Introduce operations on Arrays returning Arrays: reversedArray, sortedArray.
#KT-8711
|
2015-09-02 20:22:27 +03:00 |
|
Ilya Gorbunov
|
b3073dbd2d
|
Provide lazy implementation with an external object to synchronize on.
|
2015-09-02 15:49:53 +03:00 |
|
Ilya Gorbunov
|
184978e3cb
|
Remove usages from tests
|
2015-09-02 15:49:47 +03:00 |
|
Denis Zharkov
|
e8f91e596c
|
Adjust test data after fixes about generic nullability
|
2015-08-28 18:50:26 +03:00 |
|
Ilya Gorbunov
|
83f9ee2737
|
Concurrent getOrPut for concurrent maps.
#KT-5800 Fixed
|
2015-08-28 17:51:48 +03:00 |
|
Ilya Gorbunov
|
84d3d42e05
|
Replace deprecated reverse method usages.
|
2015-08-27 11:45:44 +03:00 |
|
Ilya Gorbunov
|
ca798d8d71
|
Rename reverse to reversed.
#KT-8171
|
2015-08-27 11:45:30 +03:00 |
|
Ilya Gorbunov
|
b8badd59ba
|
Introduce reversed extension for Comparator.
|
2015-08-27 00:10:11 +03:00 |
|
Ilya Gorbunov
|
7d33599fc2
|
Parameterless nullsFirst and nullsLast and misc comparator combining functions.
|
2015-08-27 00:09:44 +03:00 |
|
Ilya Gorbunov
|
5a4e598ba7
|
Another approach for sorting nulls.
|
2015-08-27 00:09:31 +03:00 |
|
Ilya Gorbunov
|
d49a1973e5
|
Change null handling in compareValuesBy(a, b, functions). Provide nullsFirst() and nullsLast() to extend Comparator<T> to Comparator<T?>.
|
2015-08-27 00:09:17 +03:00 |
|
Ilya Gorbunov
|
63110dcdf8
|
Remove StdLibArraysTest and include collections/ArraysTest.kt into StdLibTestToJSTest smoke tests instead.
Move helper methods, so they are available in JS semantics tests.
|
2015-08-27 00:09:04 +03:00 |
|
Ilya Gorbunov
|
521e0b679d
|
Rename sortedDescendingBy to sortedByDescending
|
2015-08-27 00:08:50 +03:00 |
|
Ilya Gorbunov
|
002c3e850f
|
Tests for sorting methods.
|
2015-08-27 00:08:37 +03:00 |
|
Ilya Gorbunov
|
6f71e54268
|
In-place array sorting in JS.
|
2015-08-27 00:07:56 +03:00 |
|
Sergey Mashkov
|
84ef068f5d
|
#KT-8708 refactor trimIndent, trimMargin, replaceIndent, replaceIndentByMargin, prependIndent
|
2015-08-12 18:45:10 +03:00 |
|
Sergey Mashkov
|
7afa40590d
|
KT-8708 Function to strip leading whitespace (stripMargin, trimMargin, stripIndent?)
|
2015-08-12 18:45:10 +03:00 |
|
Ilya Gorbunov
|
15d69499d0
|
Stop matching after the end of the input sequence was reached.
#KT-8763 Fixed
|
2015-08-11 05:11:32 +03:00 |
|
Sergey Mashkov
|
0e25a5ea82
|
JS: arrayToString should use toString() instead of direct join to handle nulls properly
#KT-8663 Fixed
|
2015-07-31 14:28:30 +03:00 |
|
Ilya Gorbunov
|
81cbbad1e5
|
Add test comparing behavior of a reversed list and a reversed view on a list.
|
2015-07-31 14:28:29 +03:00 |
|
Sergey Mashkov
|
8a0c752f99
|
KT-4844 Support asReversed() for lists
|
2015-07-31 14:28:29 +03:00 |
|
Ilya Gorbunov
|
34afb450d8
|
List binarySearch and binarySearchBy methods and tests.
#KT-5444 Fixed
#KT-8217 Fixed
|
2015-07-24 04:34:56 +03:00 |
|
Ilya Gorbunov
|
d831509cee
|
Provide listOfNotNull method.
|
2015-07-24 04:34:31 +03:00 |
|
Ilya Gorbunov
|
12e3542bce
|
Provide toTypedArray method for primitive arrays.
|
2015-07-24 04:33:55 +03:00 |
|
Ilya Gorbunov
|
f57c207ed2
|
Introduce NotImplementedError instead of UnsupportedOperationException to throw from TODO function.
#KT-8153
|
2015-07-24 04:32:52 +03:00 |
|
Ilya Gorbunov
|
f2716a973c
|
TODO as a function. Add an overload with a string reason.
#KT-8153 Fixed
|
2015-07-24 04:30:10 +03:00 |
|
Ilya Gorbunov
|
bfb116c0b2
|
Provide TODO as a substitution for not yet implemented method body.
#KT-8153
|
2015-07-24 04:29:31 +03:00 |
|