-
-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into features/proto
- Loading branch information
Showing
94 changed files
with
916 additions
and
344 deletions.
There are no files selected for viewing
This file contains 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
6 changes: 6 additions & 0 deletions
6
benchmark/programs/assert/ajv/benchmark-assert-ajv-ArrayRecursive.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import typia from "typia"; | ||
|
||
import { ArrayRecursive } from "../../../../test/structures/ArrayRecursive"; | ||
import { createAssertAjvBenchmarkProgram } from "./createAssertAjvBenchmarkProgram"; | ||
|
||
createAssertAjvBenchmarkProgram(typia.application<[ArrayRecursive], "ajv">()); |
8 changes: 8 additions & 0 deletions
8
benchmark/programs/assert/ajv/benchmark-assert-ajv-ArrayRecursiveUnionExplicit.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import typia from "typia"; | ||
|
||
import { ArrayRecursiveUnionExplicit } from "../../../../test/structures/ArrayRecursiveUnionExplicit"; | ||
import { createAssertAjvBenchmarkProgram } from "./createAssertAjvBenchmarkProgram"; | ||
|
||
createAssertAjvBenchmarkProgram( | ||
typia.application<[ArrayRecursiveUnionExplicit], "ajv">(), | ||
); |
8 changes: 8 additions & 0 deletions
8
benchmark/programs/assert/ajv/benchmark-assert-ajv-ArrayRecursiveUnionImplicit.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import typia from "typia"; | ||
|
||
import { ArrayRecursiveUnionImplicit } from "../../../../test/structures/ArrayRecursiveUnionImplicit"; | ||
import { createAssertAjvBenchmarkProgram } from "./createAssertAjvBenchmarkProgram"; | ||
|
||
createAssertAjvBenchmarkProgram( | ||
typia.application<[ArrayRecursiveUnionImplicit], "ajv">(), | ||
); |
8 changes: 8 additions & 0 deletions
8
benchmark/programs/assert/ajv/benchmark-assert-ajv-ObjectHierarchical.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import typia from "typia"; | ||
|
||
import { ObjectHierarchical } from "../../../../test/structures/ObjectHierarchical"; | ||
import { createAssertAjvBenchmarkProgram } from "./createAssertAjvBenchmarkProgram"; | ||
|
||
createAssertAjvBenchmarkProgram( | ||
typia.application<[ObjectHierarchical], "ajv">(), | ||
); |
6 changes: 6 additions & 0 deletions
6
benchmark/programs/assert/ajv/benchmark-assert-ajv-ObjectRecursive.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import typia from "typia"; | ||
|
||
import { ObjectRecursive } from "../../../../test/structures/ObjectRecursive"; | ||
import { createAssertAjvBenchmarkProgram } from "./createAssertAjvBenchmarkProgram"; | ||
|
||
createAssertAjvBenchmarkProgram(typia.application<[ObjectRecursive], "ajv">()); |
6 changes: 6 additions & 0 deletions
6
benchmark/programs/assert/ajv/benchmark-assert-ajv-ObjectSimple.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import typia from "typia"; | ||
|
||
import { ObjectSimple } from "../../../../test/structures/ObjectSimple"; | ||
import { createAssertAjvBenchmarkProgram } from "./createAssertAjvBenchmarkProgram"; | ||
|
||
createAssertAjvBenchmarkProgram(typia.application<[ObjectSimple], "ajv">()); |
8 changes: 8 additions & 0 deletions
8
benchmark/programs/assert/ajv/benchmark-assert-ajv-ObjectUnionExplicit.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import typia from "typia"; | ||
|
||
import { ObjectUnionExplicit } from "../../../../test/structures/ObjectUnionExplicit"; | ||
import { createAssertAjvBenchmarkProgram } from "./createAssertAjvBenchmarkProgram"; | ||
|
||
createAssertAjvBenchmarkProgram( | ||
typia.application<[ObjectUnionExplicit], "ajv">(), | ||
); |
8 changes: 8 additions & 0 deletions
8
benchmark/programs/assert/ajv/benchmark-assert-ajv-ObjectUnionImplicit.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import typia from "typia"; | ||
|
||
import { ObjectUnionImplicit } from "../../../../test/structures/ObjectUnionImplicit"; | ||
import { createAssertAjvBenchmarkProgram } from "./createAssertAjvBenchmarkProgram"; | ||
|
||
createAssertAjvBenchmarkProgram( | ||
typia.application<[ObjectUnionImplicit], "ajv">(), | ||
); |
6 changes: 6 additions & 0 deletions
6
benchmark/programs/assert/ajv/benchmark-assert-ajv-UltimateUnion.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import typia from "typia"; | ||
|
||
import { UltimateUnion } from "../../../../test/structures/UltimateUnion"; | ||
import { createAssertAjvBenchmarkProgram } from "./createAssertAjvBenchmarkProgram"; | ||
|
||
createAssertAjvBenchmarkProgram(typia.application<[UltimateUnion], "ajv">()); |
This file contains 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
This file contains 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
6 changes: 6 additions & 0 deletions
6
benchmark/programs/validate/ajv/benchmark-validate-ajv-ArrayRecursive.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import typia from "typia"; | ||
|
||
import { ArrayRecursive } from "../../../../test/structures/ArrayRecursive"; | ||
import { createValidateAjvBenchmarkProgram } from "./createValidateAjvBenchmarkProgram"; | ||
|
||
createValidateAjvBenchmarkProgram(typia.application<[ArrayRecursive], "ajv">()); |
8 changes: 8 additions & 0 deletions
8
benchmark/programs/validate/ajv/benchmark-validate-ajv-ArrayRecursiveUnionExplicit.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import typia from "typia"; | ||
|
||
import { ArrayRecursiveUnionExplicit } from "../../../../test/structures/ArrayRecursiveUnionExplicit"; | ||
import { createValidateAjvBenchmarkProgram } from "./createValidateAjvBenchmarkProgram"; | ||
|
||
createValidateAjvBenchmarkProgram( | ||
typia.application<[ArrayRecursiveUnionExplicit], "ajv">(), | ||
); |
8 changes: 8 additions & 0 deletions
8
benchmark/programs/validate/ajv/benchmark-validate-ajv-ArrayRecursiveUnionImplicit.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import typia from "typia"; | ||
|
||
import { ArrayRecursiveUnionImplicit } from "../../../../test/structures/ArrayRecursiveUnionImplicit"; | ||
import { createValidateAjvBenchmarkProgram } from "./createValidateAjvBenchmarkProgram"; | ||
|
||
createValidateAjvBenchmarkProgram( | ||
typia.application<[ArrayRecursiveUnionImplicit], "ajv">(), | ||
); |
8 changes: 8 additions & 0 deletions
8
benchmark/programs/validate/ajv/benchmark-validate-ajv-ObjectHierarchical.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import typia from "typia"; | ||
|
||
import { ObjectHierarchical } from "../../../../test/structures/ObjectHierarchical"; | ||
import { createValidateAjvBenchmarkProgram } from "./createValidateAjvBenchmarkProgram"; | ||
|
||
createValidateAjvBenchmarkProgram( | ||
typia.application<[ObjectHierarchical], "ajv">(), | ||
); |
8 changes: 8 additions & 0 deletions
8
benchmark/programs/validate/ajv/benchmark-validate-ajv-ObjectRecursive.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import typia from "typia"; | ||
|
||
import { ObjectRecursive } from "../../../../test/structures/ObjectRecursive"; | ||
import { createValidateAjvBenchmarkProgram } from "./createValidateAjvBenchmarkProgram"; | ||
|
||
createValidateAjvBenchmarkProgram( | ||
typia.application<[ObjectRecursive], "ajv">(), | ||
); |
6 changes: 6 additions & 0 deletions
6
benchmark/programs/validate/ajv/benchmark-validate-ajv-ObjectSimple.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import typia from "typia"; | ||
|
||
import { ObjectSimple } from "../../../../test/structures/ObjectSimple"; | ||
import { createValidateAjvBenchmarkProgram } from "./createValidateAjvBenchmarkProgram"; | ||
|
||
createValidateAjvBenchmarkProgram(typia.application<[ObjectSimple], "ajv">()); |
8 changes: 8 additions & 0 deletions
8
benchmark/programs/validate/ajv/benchmark-validate-ajv-ObjectUnionExplicit.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import typia from "typia"; | ||
|
||
import { ObjectUnionExplicit } from "../../../../test/structures/ObjectUnionExplicit"; | ||
import { createValidateAjvBenchmarkProgram } from "./createValidateAjvBenchmarkProgram"; | ||
|
||
createValidateAjvBenchmarkProgram( | ||
typia.application<[ObjectUnionExplicit], "ajv">(), | ||
); |
8 changes: 8 additions & 0 deletions
8
benchmark/programs/validate/ajv/benchmark-validate-ajv-ObjectUnionImplicit.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import typia from "typia"; | ||
|
||
import { ObjectUnionImplicit } from "../../../../test/structures/ObjectUnionImplicit"; | ||
import { createValidateAjvBenchmarkProgram } from "./createValidateAjvBenchmarkProgram"; | ||
|
||
createValidateAjvBenchmarkProgram( | ||
typia.application<[ObjectUnionImplicit], "ajv">(), | ||
); |
6 changes: 6 additions & 0 deletions
6
benchmark/programs/validate/ajv/benchmark-validate-ajv-UltimateUnion.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import typia from "typia"; | ||
|
||
import { UltimateUnion } from "../../../../test/structures/UltimateUnion"; | ||
import { createValidateAjvBenchmarkProgram } from "./createValidateAjvBenchmarkProgram"; | ||
|
||
createValidateAjvBenchmarkProgram(typia.application<[UltimateUnion], "ajv">()); |
This file contains 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
2 changes: 1 addition & 1 deletion
2
.../results/11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz/images/assert-error.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion
2
benchmark/results/11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz/images/assert.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion
2
benchmark/results/11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz/images/is.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.