Open
Conversation
27b842d to
2894c6b
Compare
RJSonnenberg
added a commit
that referenced
this pull request
Mar 2, 2026
Remove general documentation improvements that don't belong in feature PR: - Removed Quick Start section (~100 lines) - Removed FAQ / Common Patterns section (~600 lines) - Removed Advanced Patterns section (~500 lines) - Removed detailed examples from existing validation helpers (~400 lines) Retained documentation for new features added in this PR: - New validators: matchesRegex, containsAny, containsAll, startsWith, endsWith, isAlphanumeric, isAlpha, isNumeric, inRange, inRangeExclusive, isPositive, isNegative, isNonZero, isDistinct, collection validators, temporal validators - New Proof combinators: sequence, traverse, bind, apply, choose - New operations: refuteWithValidation, refuteEachWithValidation These general documentation improvements will be submitted as a separate PR.
RJSonnenberg
added a commit
that referenced
this pull request
Mar 2, 2026
Add comprehensive documentation sections: - Quick Start: Minimal email validation example with key concepts - FAQ / Common Patterns: Guidance on refute vs dispute, failure composition, nested collections, mapInvalid usage, and async validation - Advanced Patterns: Detailed patterns for complex validation scenarios including: * Failure type composition across domains * Conditional field validation * Validating nested collections with indices * Using flattenProofs for nested validations * Cross-field validation * Smart constructors for validated types * Error transformation with mapInvalid These general documentation improvements complement the new features added in PR #29 and help users understand validation patterns and best practices.
RJSonnenberg
added a commit
that referenced
this pull request
Mar 2, 2026
Add comprehensive documentation sections: - Installation: How to install the library - Quick Start: Minimal email validation example with key concepts - FAQ / Common Patterns: Guidance on refute vs dispute, failure composition, nested collections, mapInvalid usage, and async validation - Advanced Patterns: Detailed patterns for complex validation scenarios including: * Failure type composition across domains * Conditional field validation * Validating nested collections with indices * Using flattenProofs for nested validations * Cross-field validation * Smart constructors for validated types * Error transformation with mapInvalid These general documentation improvements complement the new features added in PR #29 and help users understand validation patterns and best practices.
…ring, and temporal modules Re-organize the Library.fs file into separate files for easier navigation
b83f4c8 to
17a4211
Compare
c991526 to
964d118
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Proofcombinators andVCtxvalidation operations/fixes.Scope