Masataro Asai

Results 73 issues of Masataro Asai

I have a code base that cleans up the parser (mainly type annotations) and a separate branch that supports action costs. Is this repo open for pull-requests like this?

Feature description: ``` (deftype (... &environment env) ...) ``` Most implementations just pass a `nil` to the environment variable, unlike macro expansion. Supported implementations: + [ ] [SBCL]() + [...

Feature description: Atomic compare&swap interface. Supported implementations: + [x] [SBCL]() + [x] [CCL]() + [x] [ECL]() + [ ] [CMU]() + [ ] [ABCL]() + [x] [ALISP]()

`#A((SIGNED-BYTE 8) (2 2) ((0 0) (0 0)))` + [ ] SBCL + [ ] CCL + [ ] ECL + [x] [CMU](https://pmsf.eu/pub/cmucl/doc/cmu-user-2010-09-27/extensions.html#toc41) + [ ] ABCL + [x] ALISP

conflicting standards

Feature description: Can you do this: ```lisp (defclass point (structure-object) (x y) (:metaclass structure-class)) ``` Supported implementations: + [x] [SBCL]() + [ ] [CCL]() + [ ] [ECL]() + [...

Feature description: Supported implementations: + [x] [SBCL]() + [x] [CCL]() + [ ] [ECL]() + [x] [CMU]() + [ ] [ABCL]() + [ ] [ALISP]()

Feature description: + declaration-information, define-declaration + Whether the additional `type` information added by define-declaration is recognized by the compiler Supported implementations: + [ ] [SBCL]() + [ ] [CCL]() +...

+ [x] [SBCL](http://www.sbcl.org/manual/index.html#index-truly_002dthe) + [ ] [CCL]() + [ ] [ECL]() + [x] [CMU]() + [ ] [ABCL]() + [x] [ALISP]()

Sealed CLOS classes are protected from redefinitions. See also: [sealable-metaobjects](https://github.com/marcoheisig/sealable-metaobjects). SBCL has a similar extension for structures (freeze-type). + [ ] SBCL + [ ] CCL + [ ] ECL...

Feature description: Block compilation specifies a region where the functions are automatically inlined or partially inlined, for the purpose of execution speed. This allows for more knowledge sharing between functions...