Jeongho Nam

Results 51 issues of Jeongho Nam

Change the hash buckets not to using the mod (%) operator but the bitwise and (&) operator . If size of the hash buckets always be multiple of 2, the...

enhancement

https://github.com/samchon/typescript-json/tree/master/test/structures I'm developing a runtime type checker (validator) library, and have prepared lots of test cases, for hardcore validation. How about `typescript-runtime-type-benchmarks` to adapt such test cases? They may be...

https://github.com/samchon/typescript-json

## PR Checklist Please check if your PR fulfills the following requirements: - [x] The commit message follows our guidelines: https://github.com/nestjs/docs.nestjs.com/blob/master/CONTRIBUTING.md ## PR Type What kind of change does this...

### Prerequisites - [X] I have written a descriptive issue title - [X] I have searched existing issues to ensure the issue has not already been raised ### Issue As...

```typescript const group: BbsGroup = await BbsGroup.findOneOrFail(); safe.bindAppJoin(group); const articleList: BbsArticle[] = await bbs.articles.get(); const top: BbsArticle = articleList[0]; await top.tags.get(); await top.comments.get(); await (await top.contents.get())[0].files.get(); // ANY SELECT QUERY...

enhancement