├── README ├── backend-utils ├── backend-utils.shen └── module.shen ├── binary ├── bytevector.shen ├── math.shen ├── module.shen ├── native.lisp └── stream.shen ├── calendar ├── calendar.pdf ├── calendar.shen └── module.shen ├── defstruct ├── defstruct.shen └── module.shen ├── dict └── dict.shen ├── ffi ├── ffi.pdf ├── ffi.shen └── module.shen ├── file-system └── file-system.shen ├── for-expression ├── for-expression.shen └── module.shen ├── graph ├── generation.shen ├── graph.shen └── randon-geometric-graph.shen ├── html └── html.shen ├── macros └── macros.shen ├── maths ├── Maths Library.pdf ├── macro-def.shen ├── maths-functions.pdf ├── maths-lib.shen └── module.shen ├── modulesys.shen ├── modulesys_howto.md ├── packages └── packages.shen ├── pattern-matching ├── module.shen └── pattern-matching.shen ├── regexp └── regexp.shen ├── sequence └── sequence.shen ├── strings ├── auxiliary.shen ├── macro-def.shen ├── module.shen ├── str-lib.shen ├── strings.pdf └── ustring.shen ├── utils └── defpackage.shen ├── vectors-mt ├── module.shen ├── vectors.pdf └── vectors.shen └── vectors └── vectors.shen /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/README -------------------------------------------------------------------------------- /backend-utils/backend-utils.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/backend-utils/backend-utils.shen -------------------------------------------------------------------------------- /backend-utils/module.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/backend-utils/module.shen -------------------------------------------------------------------------------- /binary/bytevector.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/binary/bytevector.shen -------------------------------------------------------------------------------- /binary/math.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/binary/math.shen -------------------------------------------------------------------------------- /binary/module.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/binary/module.shen -------------------------------------------------------------------------------- /binary/native.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/binary/native.lisp -------------------------------------------------------------------------------- /binary/stream.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/binary/stream.shen -------------------------------------------------------------------------------- /calendar/calendar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/calendar/calendar.pdf -------------------------------------------------------------------------------- /calendar/calendar.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/calendar/calendar.shen -------------------------------------------------------------------------------- /calendar/module.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/calendar/module.shen -------------------------------------------------------------------------------- /defstruct/defstruct.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/defstruct/defstruct.shen -------------------------------------------------------------------------------- /defstruct/module.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/defstruct/module.shen -------------------------------------------------------------------------------- /dict/dict.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/dict/dict.shen -------------------------------------------------------------------------------- /ffi/ffi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/ffi/ffi.pdf -------------------------------------------------------------------------------- /ffi/ffi.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/ffi/ffi.shen -------------------------------------------------------------------------------- /ffi/module.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/ffi/module.shen -------------------------------------------------------------------------------- /file-system/file-system.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/file-system/file-system.shen -------------------------------------------------------------------------------- /for-expression/for-expression.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/for-expression/for-expression.shen -------------------------------------------------------------------------------- /for-expression/module.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/for-expression/module.shen -------------------------------------------------------------------------------- /graph/generation.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/graph/generation.shen -------------------------------------------------------------------------------- /graph/graph.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/graph/graph.shen -------------------------------------------------------------------------------- /graph/randon-geometric-graph.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/graph/randon-geometric-graph.shen -------------------------------------------------------------------------------- /html/html.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/html/html.shen -------------------------------------------------------------------------------- /macros/macros.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/macros/macros.shen -------------------------------------------------------------------------------- /maths/Maths Library.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/maths/Maths Library.pdf -------------------------------------------------------------------------------- /maths/macro-def.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/maths/macro-def.shen -------------------------------------------------------------------------------- /maths/maths-functions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/maths/maths-functions.pdf -------------------------------------------------------------------------------- /maths/maths-lib.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/maths/maths-lib.shen -------------------------------------------------------------------------------- /maths/module.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/maths/module.shen -------------------------------------------------------------------------------- /modulesys.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/modulesys.shen -------------------------------------------------------------------------------- /modulesys_howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/modulesys_howto.md -------------------------------------------------------------------------------- /packages/packages.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/packages/packages.shen -------------------------------------------------------------------------------- /pattern-matching/module.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/pattern-matching/module.shen -------------------------------------------------------------------------------- /pattern-matching/pattern-matching.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/pattern-matching/pattern-matching.shen -------------------------------------------------------------------------------- /regexp/regexp.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/regexp/regexp.shen -------------------------------------------------------------------------------- /sequence/sequence.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/sequence/sequence.shen -------------------------------------------------------------------------------- /strings/auxiliary.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/strings/auxiliary.shen -------------------------------------------------------------------------------- /strings/macro-def.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/strings/macro-def.shen -------------------------------------------------------------------------------- /strings/module.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/strings/module.shen -------------------------------------------------------------------------------- /strings/str-lib.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/strings/str-lib.shen -------------------------------------------------------------------------------- /strings/strings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/strings/strings.pdf -------------------------------------------------------------------------------- /strings/ustring.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/strings/ustring.shen -------------------------------------------------------------------------------- /utils/defpackage.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/utils/defpackage.shen -------------------------------------------------------------------------------- /vectors-mt/module.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/vectors-mt/module.shen -------------------------------------------------------------------------------- /vectors-mt/vectors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/vectors-mt/vectors.pdf -------------------------------------------------------------------------------- /vectors-mt/vectors.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/vectors-mt/vectors.shen -------------------------------------------------------------------------------- /vectors/vectors.shen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vasil-sd/shen-libs/HEAD/vectors/vectors.shen --------------------------------------------------------------------------------