log

age author description
Thu, 24 Oct 2024 11:35:31 +0200 Franz Glasner farray.sh: For larger arrays use A366726 Shellsort gaps
Wed, 23 Oct 2024 22:52:14 +0200 Franz Glasner farray.sh: Implement Shell sort using Ciura gaps (A102549)
Wed, 23 Oct 2024 18:33:38 +0200 Franz Glasner farray.sh: More tests for sorting: using a random array
Wed, 23 Oct 2024 16:44:12 +0200 Franz Glasner farray.sh: Wording
Wed, 23 Oct 2024 15:59:46 +0200 Franz Glasner farray.sh: Prepare for multiple array sort implementations
Wed, 23 Oct 2024 13:56:52 +0200 Franz Glasner fports: Begin a new command "fports" and fully implemented its subcommand "fports deptree".
Wed, 23 Oct 2024 01:00:33 +0200 Franz Glasner farray.sh: Add public functions to check whether a given value refers to a object (array, alist).
Tue, 22 Oct 2024 11:48:39 +0200 Franz Glasner fpkg: Style
Mon, 21 Oct 2024 16:26:49 +0200 Franz Glasner farray.sh: Implement "farray_pop()"
Mon, 21 Oct 2024 16:26:23 +0200 Franz Glasner farray.sh: Remove a bogus "local -" declaration
Mon, 21 Oct 2024 15:48:39 +0200 Franz Glasner farray.sh: Optimize: Remove some intermediate variables where not really needed
Mon, 21 Oct 2024 15:38:01 +0200 Franz Glasner farray.sh: Implement farray_insert()
Mon, 21 Oct 2024 15:14:48 +0200 Franz Glasner farray.sh: comment
Mon, 21 Oct 2024 14:45:13 +0200 Franz Glasner farray.sh: When moving entries in the binary search list do not store into an intermediate variable.
Sun, 20 Oct 2024 18:38:12 +0200 Franz Glasner farray.sh: Make parsing of storage pointers stricter; disallow "octal" numbers.
Sun, 20 Oct 2024 16:33:20 +0200 Franz Glasner farray.sh: Beautify all the "local" declarations
Sun, 20 Oct 2024 16:09:43 +0200 Franz Glasner farray.sh: Use a more strict quoting.
Sun, 20 Oct 2024 14:43:50 +0200 Franz Glasner farray.sh: Check for typos in local variable names or missing "local" declarations for variables
Sun, 20 Oct 2024 13:27:10 +0200 Franz Glasner farray.sh: Update docs to be in sync with the new alist implementation.
Sat, 19 Oct 2024 22:40:11 +0200 Franz Glasner farray.sh: New implementation alists: searching is done using a binary search now while preserving insertion order.
Fri, 18 Oct 2024 14:02:18 +0200 Franz Glasner farray.sh: Optimize farray_sort(): use setvar instead of eval where possible.
Wed, 16 Oct 2024 23:58:16 +0200 Franz Glasner farray.sh: FIX: Remove duplicate eval calls
Wed, 16 Oct 2024 13:05:30 +0200 Franz Glasner farray.sh: FIX: falist_clear did release keys instead of values: this is now fixed
Thu, 10 Oct 2024 16:43:52 +0200 Franz Glasner farray.sh: Implement a variant of the exact binary search: "leftmost search" in "farray_binsearch_leftmost()"
Thu, 10 Oct 2024 14:04:16 +0200 Franz Glasner farray.sh: extra tests for falist_find/farray_find in empty collections
Thu, 10 Oct 2024 13:31:14 +0200 Franz Glasner farray.sh: Allow some end indexes "0" when the array/alist is empty
Thu, 10 Oct 2024 13:27:50 +0200 Franz Glasner farray.sh: Implement binary lexicographical search in "farray_binsearch()".
Wed, 09 Oct 2024 22:56:11 +0200 Franz Glasner farray.sh: Remove most of the use of "_farr_quote_for_eval()" by using other "eval" evluation order
Wed, 09 Oct 2024 22:29:46 +0200 Franz Glasner farray.sh: Implement the first simple sorting algorithm using Gnome Sort
Tue, 08 Oct 2024 18:11:24 +0200 Franz Glasner farray.sh: falist_get() and falist_tryget() now optionally can store the index of the found item into a variable also