Search found 7 matches

by schilling.klaus
Wed Jan 16, 2013 6:37 am
Forum: Whither newLISP?
Topic: anonymous rb-trees?
Replies: 11
Views: 12077

Re: anonymous rb-trees?

GNU AVL takes a function pointer for the comparison function, data are void*.
by schilling.klaus
Tue Jan 15, 2013 8:34 pm
Forum: Anything else we might add?
Topic: John Shutt's blog Structural Insight.
Replies: 2
Views: 3860

Re: John Shutt's blog Structural Insight.

Do R3RS schemes with first-class environments, such as elk and umbscheme, not try to achieve something similar as kernel?
by schilling.klaus
Sat Jan 05, 2013 11:22 pm
Forum: Whither newLISP?
Topic: anonymous rb-trees?
Replies: 11
Views: 12077

Re: anonymous rb-trees?

Do the internally implemented trees allow for supplying a user-defined comparison function, making it possible to implement a balanced binary tree sort?
by schilling.klaus
Fri Jan 04, 2013 11:55 am
Forum: Whither newLISP?
Topic: anonymous rb-trees?
Replies: 11
Views: 12077

Re: anonymous rb-trees?

Is it possible to use the foreign function interface and an external c library that implements balaned trees, such as glib or GNU AVL?
by schilling.klaus
Mon Nov 19, 2012 8:52 am
Forum: Anything else we might add?
Topic: XSLT and newLisp
Replies: 8
Views: 7328

Re: XSLT and newLisp

Is it possible to interface newlisp with libxslt, libxml2, and xsltproc instead?
by schilling.klaus
Fri Jul 06, 2012 5:26 am
Forum: Anything else we might add?
Topic: escaping characters problem
Replies: 10
Views: 8100

Re: escaping characters problem

Does this approach also work for replacing unicode characters outside the ascii range with numerical html character references or the other way round?
by schilling.klaus
Thu Jul 05, 2012 6:54 am
Forum: So, what can you actually DO with newLISP?
Topic: 5 Cent tip for today [ Ncurses ]
Replies: 6
Views: 10594

Re: 5 Cent tip for today [ Ncurses ]

How does the foreign function interface treat C-preprocessor macros? Some `functions' in the ncurses library, such as getyx, are really macros and would screw up for example the simple ffi of Clisp. (The backdoor is then to write wrapper code in C and link it against the Clisp library.) Klaus Schill...