1.0.14 • Published 1 year ago

@jakzo/type-gymnastics v1.0.14

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Collection of crazy advanced types in TypeScript. Just for fun, not intended for use in production.

TypeScript's type system is pretty powerful and as it turns out, is turing-complete, meaning any possible logic can be written with it. You may have seen types pushed to the limit in blog posts like this. This repository is my own collection of insane utility types.

The available types are listed in the API documentation.

Example

npm install --save-dev @jakzo/type-gymnastics

your-code.ts:

import type { Math, Problems } from "@jakzo/type-gymnastics";

type Result = Math.Evaluate<"12 + 34 - 5*(6*7 % 8) + 9">;
// The type of `Result` is: 45
const b: Result = 45;

type NumQueensToPlace = 8;
type GridSize = 8;
type Board = Problems.NQueensVisualized<
  Problems.NQueens<NumQueensToPlace, GridSize>,
  GridSize
>;
// The type of `Board` is: "
// ♕ ◼️ ◻️ ◼️ ◻️ ◼️ ◻️ ◼️
// ◼️ ◻️ ◼️ ◻️ ♕ ◻️ ◼️ ◻️
// ◻️ ◼️ ◻️ ◼️ ◻️ ◼️ ◻️ ♕
// ◼️ ◻️ ◼️ ◻️ ◼️ ♕ ◼️ ◻️
// ◻️ ◼️ ♕ ◼️ ◻️ ◼️ ◻️ ◼️
// ◼️ ◻️ ◼️ ◻️ ◼️ ◻️ ♕ ◻️
// ◻️ ♕ ◻️ ◼️ ◻️ ◼️ ◻️ ◼️
// ◼️ ◻️ ◼️ ♕ ◼️ ◻️ ◼️ ◻️"

You can try it out at the TypeScript Playground.

Why?

For fun. 😄

Usage Tips

Restarting TypeScript server

If you're in VSCode, use this command whenever things start going wonky:

CTRL/CMD+SHIFT+P -> Restart TypeScript Server

The TS server will frequently get into a broken state while you're in the process of typing code so you may find that you quickly memorize this command. 🙂

Efficiently chaining function calls

When using the library, you will notice that many exported functions have an equivalent which begins with a _. This is because the library uses its own representation for certain data types (most notably numbers). The _ functions accept the internal representations so that functions can be chained together without constant converting to and from internal types.

For example, this library represents numbers as binary strings instead of TypeScript's number type. You can do String.Repeat<"a", Math.Fibonacci<3>> and it will work but if you want (or in some cases need) more efficiency, you can do this which will avoid converting the binary number to a number then back to a binary number:

type R = String._Repeat<"a", Math._Fibonacci<Integer.FromDecimal<3>>>;
1.0.9

1 year ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.14

1 year ago

1.0.13

1 year ago

1.0.12

1 year ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago