Results 64 comments of noname

> Isn't the return type something like `[number, number, number, string]`? Or does the `offset` arg break that? This code is not easy to typed because of `offset`.

I solved the conflict and modified the `any[]` to `Array`

Are we supposed to load only the packages that the user wants to use `require`?

I got it. I'll try

I tested it and it seems that it is already possible to reduce the size of the package size. ## Import from "js-sdsl" ![image](https://user-images.githubusercontent.com/48761044/189793786-7a9fc4a0-e961-4f89-9ecd-584371118e9e.png) ## import from "js-sdsl/dist/cjs/container/SequentialContainer/Vector" ![image](https://user-images.githubusercontent.com/48761044/189793822-af336900-f436-4eb3-bee3-9cbb66dec14e.png) You...

In order to reduce the build result, the source must be analyzed and unnecessary sources must be excluded through the bundler. In this case, some degree of tree shaking should...

> Yes, one of the way is to publish independent package. > > But this is a bit troublesome because I didn't think about it when I first wrote. >...

I'll create a build solution for this

> > The problem here is that each container has a dependency on each other. Publishing multiple containers separately increases the number of duplicate codes between each package. So I...

> > If library A uses js-sdsl/ordered-map and library B uses js-sdsl/ordered-set, code duplication cannot be avoided for projects using those two libraries > > Is there anything wrong with...