@internal
()
| 1597 | readonly _tag = "BigInt" |
| 1598 | /** @internal */ |
| 1599 | getParser() { |
| 1600 | return fromRefinement(this, Predicate.isBigInt) |
| 1601 | } |
| 1602 | /** @internal */ |
| 1603 | matchPart(s: string, options: ParseOptions): bigint | undefined { |
| 1604 | if (!isStringBigIntRegExp.test(s)) return undefined |
nothing calls this directly
no test coverage detected