Data structures and algorithms for sparse arrays and matrices,
based on index arrays and simple triplet representations,
respectively.
WWW: https://cran.r-project.org/web/packages/slam/
ChangeLog:
Better destructor parameter error message
Attempting either to explain or declare a destructor having a parameter list now prints "destructors may not have parameters" explicitly.
Defining a type more than once
If a type is defined again where the current language is older than the language in which it was previously defined, the type's set of languages is now updated to be the current language and newer. For example, previously:
cdecl> set c23
cdecl> typedef int Int
cdecl> show
typedef int Int;
cdecl> set c17
cdecl> typedef int Int // Already exists so did nothing.
cdecl> show // Would NOT show anything.
cdecl>
Now the second typedef would update Int to make it available in C17 and newer so the second show would show it.
Multiple conflicting declarations
Now exhaustively checking multiple declarations for conflicts in C. Previously, multiple declarations of a variable or function with conflicting types that was separated by a different variable or function wasn't caught:
int x, x; // OK in C
int x, *x; // error (different types)
int x, y, *x; // error, but wasn't caught
Now it is.
Using macros elsewhere
Previously, attempting to use a macro where names are generally allowed would result in an error like:
cdecl> #define N 5
cdecl> explain int a[N]
^
15: syntax error: "N": ']' expected
because "N" was returned as a macro token by the lexer. Now, the lexer ignores the fact that a name might be a macro.
Changes:
This release includes error message improvements as well as fixes in SSH key formatting and permission management.
IMPROVEMENTS
`op read` will now output an error message consistent with the secret reference
provided, when no matching field or section is found within the item. {3592}
FIXED
Output of SSH private keys on non-DOS OSes no longer includes
the carriage return character in line-breaks. {3913}
Users and groups can now grant and revoke permissions if they have
the `manage_vault` permission. {3863}
ChangeLog: https://converseen.fasterland.net/
* Reading PDF files during import is now much faster (Works only with
ImageMagick7)
* Service Menu is now compatible with KDE Plasma 6
* Fixed keyboard shortcuts
* Various Bugfixes