cffi VS polymorphic-functions

Compare cffi vs polymorphic-functions and see what are their differences.

cffi

The Common Foreign Function Interface (by cffi)

polymorphic-functions

A function type to dispatch on types instead of classes with partial support for dispatching on optional and keyword argument types. (by digikar99)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
cffi polymorphic-functions
16 6
414 50
1.7% -
4.0 5.6
30 days ago 21 days ago
Common Lisp Common Lisp
MIT License -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

cffi

Posts with mentions or reviews of cffi. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-21.
  • A few newbie questions about lisp
    4 projects | /r/Common_Lisp | 21 May 2023
    When you want to do anything that breaks the nice bubble of your Lisp image, you might want to know a bit about your operating system's programming interface. This will come in handy if you ever need to wrap a library with CFFI. There are some things that are pretty inconvenient as a rule (like dealing with any protocol that uses network byte order), but if you stay within the bubble of your Lisp image, you won't really notice them.
  • *UPDATE* - CL-OBJC
    3 projects | /r/Common_Lisp | 6 Mar 2023
    I'm just posting the work that I have done over the last year or so on CL-Objc. I'm still blocked from better support (e.g., passing structs by value for frameworks like UIKit). I just wanted to post what I have done online for others interested in the work or motivated to collaborate on this.
  • Waiting on feedback - CFFI PR
    2 projects | /r/Common_Lisp | 2 Mar 2023
    Good morning ladies and gentlemen, I have been waiting on some feedback for PR in CFFI. This feature is blocking me from reviving CL-OBJC. Any help will be appreciated. Thank you in advance.
  • Anyone else able to kill threads in SBCL on M1 mac?
    1 project | /r/lisp | 8 Feb 2023
    Is that actually https://github.com/cffi/cffi/commit/33970351e71bb5f12ba56fc40270089e948ae112 ? I.e. after loading cl+ssl. (Although Hunchentoot does not interrupt threads)
  • Programming the Raspberry Pi GPIO pins using Common Lisp?
    5 projects | /r/lisp | 1 Feb 2023
    Maybe access the pins using CFFI, https://github.com/cffi/cffi package and one the libraries mentioned here? https://www.bigmessowires.com/2018/05/26/raspberry-pi-gpio-programming-in-c/
  • Why Functional Programming Should Be the Future of Software
    11 projects | news.ycombinator.com | 2 Nov 2022
  • Updating Quicklisp Packages
    1 project | /r/Common_Lisp | 8 Sep 2022
    FTR, on my system QL fetches CFFI 0.23.0 and the fix/error I'm talking about is https://github.com/cffi/cffi/blob/master/src/libraries.lisp#L106 and seems to have been added iin this PR https://github.com/cffi/cffi/pull/173/commits/263b38f4f2600dbacde8f2b313620c35a563c6df so the fix should be in CFFI 0.24.0 released 24 March 2021.
  • CFFI and frameworks on OSX
    1 project | /r/sbcl | 8 Sep 2022
    FTR: this is the PR https://github.com/cffi/cffi/pull/173/commits/263b38f4f2600dbacde8f2b313620c35a563c6df
  • interested in learning lisp, (specifically for games, but also for everything else including tui and gui applications for linux. currently have next to no programming knowledge, can i get forwarded some resources and some tips on what exactly i should do? any videos i should watch?
    17 projects | /r/lisp | 23 Jun 2022
    C: Alternatively (more difficult) you could try to wrap the underlying C layers of either of those mentioned under Python with CFFI. The C-based game engine, Raylib, is also wrappable this way. I finished a super cool walking simulator in CL with that, but it is more tedious than the others since raylib is really barebones.
  • Common Lisp
    18 projects | news.ycombinator.com | 2 Oct 2021
    I feel inspired to start Lisp after being disappointed with the "open" source scene of 2021. I'd rather pay LispWorks a yearly fee and be left alone than dealing with unbalanced people in the Python space. The free Lisp implementations also look somewhat isolated from the ideological wars.

    However, a C interface is required. Is this one the recommended solution? Is it really portable?

    https://common-lisp.net/project/cffi/

    What is the speed compared to a Python C extension? Are implementation-specific C interfaces faster (I guess they are)?

    Sorry for so many questions, but these can usually only be answered by people who have actually used the interface.

polymorphic-functions

Posts with mentions or reviews of polymorphic-functions. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-24.
  • Adding new types and operators to Lisp
    6 projects | /r/lisp | 24 Feb 2023
    If performance is a concern, then you would want to stick to CLHS provided simple-array and create appropriate types using deftype, and then dispatch on the types either by yourself, or by using something like polymorphic-functions and polymorph.maths.
  • defgeneric and &rest
    1 project | /r/lisp | 21 Jan 2023
    If you want to dispatch on vectors, you can try out polymorphic-functions which was made for the express purpose of dispatching on specialized arrays aka types rather than classes.
  • numericals - Performance of NumPy with the goodness of Common Lisp
    8 projects | /r/lisp | 2 Aug 2022
    Since the past year or two, I have been working on numericals that aims to provide the speed of NumPy with the goodness of Common Lisp. In particular, this includes the use of dynamic variables, restarts, and compiler-notes wherever appropriate. It uses CLTL2 API (and may be slightly more) under the hood to provide AOT dispatch, but nothing stops you from combining it with JAOT dispatch provided by numcl/specialized-function. This also spawned a number of projects most notably polymorphic-functions to dispatch on types instead of classes and extensible-compound-types that allows one to define user defined compound types (beyond just the type-aliases enabled by deftype. Fortunately enough, interoperation between magicl, numcl and numericals/dense-numericals actually looks plausible!
  • Common Lisp polymorphic stories.
    13 projects | /r/lisp | 4 Nov 2021
    Before reading this, please go and check out https://github.com/digikar99/polymorphic-functions which this project is fully based on. It's great.
  • polymorphic-functions - Possibly AOT dispatch on argument types with support for optional and keyword argument dispatch
    9 projects | /r/lisp | 21 May 2021
    What I am calling parametric polymorphism is this test:

What are some alternatives?

When comparing cffi and polymorphic-functions you can also consider the following projects:

cl-autowrap - (c-include "file.h") => complete FFI wrapper

lisp-interface-library - LIL: abstract interfaces and supporting concrete data-structures in Common Lisp

go-ffi - Go bindings to libffi

fast-generic-functions - Seal your generic functions for an extra boost in performance.

racket - The Racket repository

cl-parametric-types - (BETA) C++-style templates for Common Lisp

trial - A fully-fledged Common Lisp game engine

ctype - CL type system implementation

numericals - CFFI enabled SIMD powered simple-math numerical operations on arrays for Common Lisp [still experimental]

paip-lisp - Lisp code for the textbook "Paradigms of Artificial Intelligence Programming"

generic-cl - Generic function interface to standard Common Lisp functions