LibraryTools
Create
creates a new library in the pre-existing directory
Calling Sequence
Parameters
Description
Examples
Create( archive, size )
archive
-
string; Maple library
size
integer (optional); the approximate number of members to be stored in the library
The Create( archive, size) calling sequence creates a new library in the directory specified by archive.
If archive is a directory, maple.mla is created. Otherwise, the library specified by the path and library name in archive is created.
The optional size specifies the approximate number of members to be stored in the library. When size is not given, a library of size 100 is created. This size does not limit the number of members that can be stored in the library because the library automatically grows in size as needed.
with⁡LibraryTools:
LibLocation≔cat⁡kernelopts⁡mapledir,/lib/myLib.mla
Create⁡LibLocation
a≔10
Save⁡a,LibLocation
See Also
LibraryTools[AddFromDirectory]
LibraryTools[BuildFromDirectory]
LibraryTools[ConvertVersion]
LibraryTools[Delete]
LibraryTools[UpdateFromDirectory]
march
Download Help Document