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