(self: MutableList<A>, message: A)
| 340 | * const list = MutableList.make<number>() |
| 341 | * MutableList.append(list, 1) |
| 342 | * const items = [2, 3, 4] |
| 343 | * MutableList.appendAllUnsafe(list, items, true) // => 3 |
| 344 | * |
| 345 | * MutableList.toArray(list) // => [1, 2, 3, 4] |
| 346 | * ``` |
| 347 | * |
| 348 | * @category mutations |
| 349 | * @since 4.0.0 |
| 350 | */ |
| 351 | export const appendAllUnsafe = <A>(self: MutableList<A>, messages: ReadonlyArray<A>, mutable = false): number => { |
| 352 | if (messages.length === 0) { |
| 353 | return 0 |
no outgoing calls
no test coverage detected
searching dependent graphs…