Skip to content

Tags: astek98/language-ext

Tags

v2.2.0-alpha

Toggle v2.2.0-alpha's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request louthy#325 from bender2k14/feature/reorganize_null…

…_checking_code

Feature/reorganize null checking code

v2.1.26

Toggle v2.1.26's commit message
Fix bugs in toMapUpdate and toMapTry

2.1.20

Toggle 2.1.20's commit message
Fix for IfFailThrow not throwing if an internal operation caught the …

…exception and returned it as Result

louthy#264

v2.1.14

Toggle v2.1.14's commit message
2.1.14

v2.1.11

Toggle v2.1.11's commit message
Validation serialisation

v2.1.5

Toggle v2.1.5's commit message
Merge branch 'master' of https://github.com/louthy/language-ext

v2.1.4

Toggle v2.1.4's commit message
Record types: ToString and Serialisation

 - Default ToString() behviour added to Record
 - Default ISerializable implementation for Record
 - New Attributes for opting out of:
   - Equals() - OptOutOfEq
   - CompareTo() - OptOutOfOrd
   - GetHashCode() - OptOutOfHashCode
   - ToString() - OptOutOfToString
   - Serialization - OptOutOfSerialization (can also use NonSerializable

v2.1.0

Toggle v2.1.0's commit message
Record types in C#

v2.0.67

Toggle v2.0.67's commit message
Merge branch 'master' of https://github.com/louthy/language-ext

v2.0.64

Toggle v2.0.64's commit message
Breaking change: Flipped Compose and BackCompose

 - The extension methods felt like they were back-to-front, Compose and BackCompose are now reverse so that: a.Compose(b) works rather than b.Compose(a).  It allows for easier chaining of functions.