This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ignore_for_file: curly_braces_in_flow_control_structures | |
| /* | |
| * Performance benchmark of different ways to append data to a list. | |
| * https://gist.github.com/PlugFox/9849994d1f229967ef5dc408cb6b7647 | |
| * | |
| * BytesBuilder | builder.add(chunk) | 7 us. | |
| * AddAll | list.addAll(chunk) | 594 us. | |
| * Spread | [...list, ...chunk] | 1016446 us. | |
| * Concatenation | list + chunk | 1005022 us. |