← SchemaASTSchemaAST.isUnionconsteffect/SchemaAST.ts:373(ast: AST): ast is Union<AST>Narrows an AST to Union.guardsASTUnionSource effect/SchemaAST.ts:3731 linesexport const const isUnion: ( ast: AST ) => ast is Union<AST>Narrows an AST to Union .@categoryguards@since3.10.0isUnion = function makeGuard<T extends AST["_tag"]>( tag: T ): (ast: AST) => ast is Extract<AST, { _tag: T }>makeGuard("Union")Referenced by 1 symbolsSchema.toTaggedUnion
SchemaAST.isUnionconsteffect/SchemaAST.ts:373(ast: AST): ast is Union<AST>Narrows an AST to Union.guardsASTUnion