Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions doc/md/12-base-core-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,12 @@ The core package introduces a fundamental reorganization of data structures with
- `join()` - Join arrays from iterator
- `toText()` - Convert array to text representation

#### Parameter order changes
- `indexOf(element, array, equal)` → `indexOf(array, equal, element)`
- `lastIndexOf(element, array, equal)` → `lastIndexOf(array, equal, element)`
- `nextIndexOf(element, array, fromInclusive, equal)` → `nextIndexOf(array, equal, element, fromInclusive)`
- `prevIndexOf(element, array, fromExclusive, equal)` → `prevIndexOf(array, equal, element, fromExclusive)`

#### Removed functions
- `take()` - Use `sliceToArray()` instead
- `sortInPlace()` - Use `VarArray.sortInPlace()` instead
Expand Down
Loading