inlined-generic-function icon indicating copy to clipboard operation
inlined-generic-function copied to clipboard

Bringing the speed of Static Dispatch to CLOS. Succeeded by https://github.com/marcoheisig/fast-generic-functions

Results 4 inlined-generic-function issues
Sort by recently updated
recently updated
newest added

I get this failure: http://report.quicklisp.org/2019-04-28/failure-report/inlined-generic-function.html#inlined-generic-function ```; caught ERROR: ; during macroexpansion of (MATCH2*+ (WHOLE) (T) ...). Use *BREAK-ON-SIGNALS* to intercept. ; invalid number of arguments: 8```

When using inlined-generic-functions and loading packages via quicklisp, inlined generics do not call the desired `make-method-lambda` method. See example in https://github.com/bon/igtest. Clone it to somewhere quicklisp can see it and...

Hi, first of all, ``` lisp (let ((*features* (cons :inline-generic-function *features*))) (print (inline-generic-function '(plus a b)))) ``` This symbol is not exported, and not even defined in my QL (`inlined-generic-function-20160628-git`)....

The benchmarks provided are for methods on the built-in lisp types number, fixnum and double-float. To test the behaviour on defined classes we added a simple boxing class and found...