Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Big Bang. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | descendants | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
91dedbe702f4d6e919663e9a861943b6 |
| User & Date: | imagic 2021-01-21 18:21:40.000 |
Context
|
2021-01-26
| ||
| 20:22 | Implement xtype system. ... (check-in: 43e2a34aa0 user: imagic tags: trunk) | |
|
2021-01-21
| ||
| 18:21 | Big Bang. ... (check-in: 91dedbe702 user: imagic tags: trunk) | |
Changes
Added LICENSE.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | MIT License Copyright (c) 2021 ImagicTheCat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
Added README.adoc.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | = xtype ifdef::env-github[] :tip-caption: :bulb: :note-caption: :information_source: :important-caption: :heavy_exclamation_mark: :caution-caption: :fire: :warning-caption: :warning: endif::[] :toc: left :toclevels: 5 *xtype*, or Extended Type, is a dynamic type system library for Lua. Sometimes, advanced type checking code is needed to implement specific abstractions; *xtype* aims to fill that need. .Incentives: Automation:: Prevent writing redundant type checking code. Interoperability:: Having a general low-level type system library can ease the interactions of third-party code. Metaprogramming / Genericity:: Exploit the dynamic nature of Lua to generate definitions on-the-fly. See link:src[]. |