Path to this page:
Subject: CVS commit: pkgsrc/devel/hs-sorted-list
From: Masatake Daimon
Date: 2022-02-16 11:04:42
Message id: 20220216100442.8D519FB24@cvs.NetBSD.org
Log Message:
devel/hs-sorted-list: import hs-sorted-list-0.2.1.0
Type-enforced sorted lists and related functions.
These are useful for:
* Constraining the argument of a function to be a sorted list by stating in
your type that the input list is a sorted list.
* Avoiding sorting a list twice.
* Creating a list that is sorted from the moment of its construction, so it
doesn't have to be sorted later.
* Performing list operations keeping the input list sorted.
* Improving those list operations that can be benefited from the ordering
of its elements.
* Creating infinite lists that are sorted!
* And more!
Files: