aboutsummaryrefslogtreecommitdiff
path: root/module/util.scm (follow)
Commit message (Collapse)AuthorAge
* Add insert-ordered.Hugo Hörnquist2020-07-07
|
* Change calling for find-min.Hugo Hörnquist2020-06-28
|
* Util now exports fold-values.Hugo Hörnquist2020-06-13
|
* Filter out ALL X-HNH- fields from ics output.Hugo Hörnquist2020-06-05
|
* Add assq-limit.Hugo Hörnquist2020-06-01
|
* Document assq-merge.Hugo Hörnquist2020-06-01
|
* Change for loop from for-each to map.Hugo Hörnquist2020-06-01
|
* Minor change.Hugo Hörnquist2020-05-24
|
* Add test for filter-sorted.Hugo Hörnquist2020-05-19
|
* Add label macro.Hugo Hörnquist2020-05-14
|
* Change values-map to valued-map.Hugo Hörnquist2020-05-13
|
* Add values-map.Hugo Hörnquist2020-05-13
|
* Clean up util header.Hugo Hörnquist2020-05-09
|
* Remove use-modules*.Hugo Hörnquist2020-04-26
|
* util now sets keyword style.Hugo Hörnquist2020-04-25
|
* Add iterate procedure.Hugo Hörnquist2020-04-22
|
* Remove define-quick-record macros.Hugo Hörnquist2020-04-22
|
* Add group prodedure.Hugo Hörnquist2020-04-20
|
* Change cross-product to take any number of lists.Hugo Hörnquist2020-04-20
|
* Add ->> macro.Hugo Hörnquist2020-04-20
|
* Add some utility functions.Hugo Hörnquist2020-04-06
|
* Add group-by.Hugo Hörnquist2020-04-01
|
* Extend for syntax to support multiple variables.Hugo Hörnquist2020-04-01
|
* Add print-and-return macro.Hugo Hörnquist2020-03-20
|
* Once again compiles.Hugo Hörnquist2020-01-30
|
* Extend define-many to allow a custom define procedure.Hugo Hörnquist2020-01-24
|
* Add swap.Hugo Hörnquist2020-01-24
|
* Add and=>>.Hugo Hörnquist2020-01-24
|
* Allow = in set->.Hugo Hörnquist2020-01-23
|
* Add case* and define-many.Hugo Hörnquist2020-01-23
|
* Multiple values for let-env.Hugo Hörnquist2020-01-13
|
* Util set-> macro.Hugo Hörnquist2020-01-13
|
* Util re-export define*-public.Hugo Hörnquist2020-01-13
|
* Introduce printer: argument to define-quick-record.Hugo Hörnquist2019-12-30
|
* Whitespace fixup.Hugo Hörnquist2019-12-30
|
* Replace let-lazy with better version.Hugo Hörnquist2019-12-24
|
* Add awhen.Hugo Hörnquist2019-12-23
|
* Add let-env.Hugo Hörnquist2019-11-05
|
* Fix day-stream, and in effect terminal output.Hugo Hörnquist2019-10-05
|
* Locate bug with DTEND.Hugo Hörnquist2019-10-03
|
* Add support for events without DTEND set.Hugo Hörnquist2019-05-22
|
* Add preliminary use-modules* form.Hugo Hörnquist2019-05-13
|
* Add marker on today in small calendar.Hugo Hörnquist2019-05-06
|
* Fix re-export-modules.Hugo Hörnquist2019-05-03
|
* Replace if.Hugo Hörnquist2019-05-03
|
* Replace 'when' and 'unless'.Hugo Hörnquist2019-04-30
|
* Clean up util and move exceptions.Hugo Hörnquist2019-04-25
|
* Remove take-drop-while, span already in SRFI-1.Hugo Hörnquist2019-04-24
|
* Add let-lazy.Hugo Hörnquist2019-04-24
|
* Add {mod,set}/r!Hugo Hörnquist2019-04-24
| | | | | | | | | `set!' by default has an unspecified return value. But that haven't stopped me from using that (set! (acc obj) val) returns the value returned by the internal setter function. This change requires you to explicitly request the returning version of set, which returns the value of the last set field.