A Swift library for Swift code parsing and manipulation.
At present Foundation has an Objective-C core on Apple platforms and a C core on others. In the future there will be a unified Foundation implementation with more parts in pure Swift, which makes it more portable and easier to split into multiple independent parts.
Redux for Kotlin, and in particular Jetpack Compose (including Compose Multiplatform).
Swift web server framework.
Swift package GitHub crawler and indexer.
Lazy dynamic constants for Java. Implemented as dynamic constant pool entries.
Given that a significant part of the startup time of a typical Java application is taken up by class initialization, I wonder if this could be used for good effect when declaring the ubiquitous Logger
instance and such.
A more verbose alternative that works without this is:
private static Logger logger() {
class Statics {
static final Logger logger = Logger.getLogger(Parent.class);
}
return Statics.logger;
}
As the Dycon README points out, this alternative (which is a variant of the initialization-on-demand holder idiom) incurs overhead in the form of an additional class object, so it has its drawbacks. Still, you may prefer it because it does not involve bytecode trickery.
GTK 3 and GTK 4 bindings for Swift. Autogenerated, for the most part, based on GObject Introspection.
Dependency injection for Swift.
An Apple SourceKit command line tool. Adorable.
Nonrecursive makefile framework for GNU Make.
Nonrecursive makefile template for GNU Make.
GNU Make utility function library.
Checks cross-references of files and directories in readmes and other documentation. Meant to be used as part of a continuous integration pipeline.
Installs executable Swift packages from their source code repositories.
Converts the output of makefiles into TAP format, which can then be piped into any TAP formatter. There are TAP formatters that produce quite pretty output.
Science fiction literature awards, awarded annually.
What you can and cannot do if you want to stay ABI-compatible.
Windows APIs in Swift.
Sockets for Swift.
Web server framework for Swift.
Abstract algebra library for Swift.
QuickCheck for Swift.
Programming language built with subtyping (lattice typing) and categorical duality in mind. The core of the language is a term language for sequent calculus (rather than natural deduction as is typical for functional languages).