default_mapping_profile : MappingProfile
Case
Case :: # (opaque)
Unicode 17 complete-string case mapping and folding.
Every successful result owns both its transformed text and one source fact for every input scalar. Case conversion never normalizes the source or the result. Context-sensitive rules inspect the original source only.
unicode_default : MappingProfile
Explicit profile selectors for consumers of this sealed module. These semantic values intentionally do not expose generated data IDs.
turkic : MappingProfile
lithuanian : MappingProfile
default_fold_profile : FoldProfile
full : FoldProfile
simple : FoldProfile
turkic_full : FoldProfile
turkic_simple : FoldProfile
Construct mandatory resource limits without exposing the sealed record representation. Every Case operation requires this explicit budget.
unlimited_limits : Limits
mapping_profile_revision : MappingProfile -> [None, Some(MappingProfileRevision)]
fold_profile_revision : FoldProfile -> [None, Some(FoldProfileRevision)]
result_text : Result -> Str
Inspect opaque result and fact values through stable semantic tags. The return tags are structural, so callers can pattern-match them without gaining access to the generated lookup representation.
result_facts : Result -> List(Fact)
result_unicode_version : Result -> UnicodeVersion
result_operation : Result -> [Lower, Upper, Title, Fold]
result_profile : Result -> [MappingUnicodeDefault, MappingTurkic, MappingLithuanian, FoldFull, FoldSimple, FoldTurkicFull, FoldTurkicSimple]
result_profile_revision : Result -> [NoProfileRevision, MappingTurkicV1, MappingLithuanianV1, FoldSimpleV1, FoldTurkicV1]
fact_input : Fact -> TextRange
fact_output : Fact -> TextRange
fact_shape : Fact -> [Unchanged, Simple, Expanded, Removed]
fact_contextual : Fact -> Bool
error_limit_resource : Error -> [NoLimitResource, InputBytes, InputScalars, OutputBytes, OutputScalars, Facts]
error_kind : Error -> [LimitExceeded, CoordinateOverflow, InternalEncodingFault]
error_limit : Error -> [Some({ limit : U64, required : U64 }), None]
error_position : Error -> [NoErrorPosition, ErrorPosition(TextPosition)]
CoordinateOverflow carries the absolute scalar-aligned position at
which checked coordinate arithmetic failed. Other errors have none.
Apply Unicode 17 full lowercase mappings under an explicit profile.
Apply Unicode 17 full uppercase mappings under an explicit profile.
Apply Unicode R3 titlecasing with the package's exact default Word core. Scalars before a word segment's first cased scalar remain unchanged; that scalar title-maps, and every later scalar lower-maps through the boundary.
Apply Unicode 17 case folding. Full uses C+F, simple uses C+S, and an explicit Turkic profile lets a T mapping override that normal selection.
MappingProfile : [UnicodeDefault, Turkic, Lithuanian]
FoldProfile : [Full, Simple, TurkicFull, TurkicSimple]
MappingProfileRevision : [TurkicV1, LithuanianV1]
FoldProfileRevision : [SimpleV1, TurkicV1]
Shape : [Unchanged, Simple, Expanded, Removed]