Hyperlinkv0.8.0-beta.28

String

String.Concattypeeffect/String.ts:134
`${A}${B}`

Concatenates two strings at the type level.

Example (Concatenating string literal types)

import type { String } from "effect"

// Type-level concatenation
type Result = String.Concat<"hello", "world"> // "helloworld"
models
Source effect/String.ts:1341 lines
export type Concat<A extends string, B extends string> = `${A}${B}`
Referenced by 1 symbols