This is a child issue of #27687.
A companion issue is #29216.
Currently, the DynamicLoading module exposes a type with the name binary used to represent a loaded program. E.g.,
record binary {
// ...
}
var bin = try! binary.load('path/to/program');
However, in discussions we concluded that binary may not be the most intuitive name for the type.
Note that there is no strong motivation for the current name. I chose it because it felt right on a whim as I often refer to native programs as "binaries".
Here are some other possible options for a type name:
program
library
dynamicLibrary
dynLib
This is a child issue of #27687.
A companion issue is #29216.
Currently, the
DynamicLoadingmodule exposes a type with the namebinaryused to represent a loaded program. E.g.,However, in discussions we concluded that
binarymay not be the most intuitive name for the type.Note that there is no strong motivation for the current name. I chose it because it felt right on a whim as I often refer to native programs as "binaries".
Here are some other possible options for a type name:
programlibrarydynamicLibrarydynLib