New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@jakzo/type-gymnastics

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jakzo/type-gymnastics

Collection of crazy advanced types in TypeScript.

latest
npmnpm
Version
1.0.14
Version published
Maintainers
1
Created
Source

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>>>;

FAQs

Package last updated on 05 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts