summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/funcdata
AgeCommit message (Collapse)Author
2020-11-17Implement IFreezable for IMapBen Culkin
2020-11-16Add interface for freezing/thawing objectsBen Culkin
This adds a new interface IFreezable, which denotes that your object supports being 'frozen' (immutable) or 'thawed' (mutable). There is also optional support for 'deep-freezing' objects, which disables the ability to thaw them. It also introduces a new exception called ObjectFrozen, which implementations of IFreezable may or may not throw when you attempt to modify a frozen object
2020-11-09Formatting cleanupBen Culkin
2020-04-13Cleanup passBen Culkin
Pass to do some cleanups
2019-07-02Rename package rootbculkin2442
The package root is now bjc, not io.github.bculkin2442.