User Tools

Site Tools


lambdas_anonymous_functions

Lambdas (anonymous functions)

by Richard Russell, March 2022

BBC BASIC does not 'officially' support lambdas (anonymous functions), in that the language itself does not incorporate that concept. But as is so often the case the functionality can quite easily be synthesised from lower-level operations.

Here is an example (it relies on extensions available in BBC BASIC for Windows, BBC BASIC for SDL 2.0 and the Console Mode editions):

      PROC_lambda(foo{}, "(x) = x * x")
      PROC_lambda(bar{}, "(x, y) PRINT x ^ y : ENDPROC")
      PRINT FN(foo{})(5)
      PROC(bar{})(PI, 2)
      END
 
      DEF PROC_lambda(RETURN a{}, a$)
      LOCAL a%% : DIM a{a%%, a$}
      IF INKEY(-256) <> &57 IF @platform% AND &40 a%% = ]332 ELSE a%% = !332
      IF EVAL("1RECTANGLE:" + a$) a$ = $(a%% + 3)
      a.a$ = a$ + CHR$&D : a.a%% = PTR(a.a$)
      ENDPROC

Here we create two lambdas, foo (which is function-like) and bar (which is procedure-like); these are captured as opaque structures, because that's the data type most suited to holding a lambda. They are then executed using the normal syntax for an indirect function or procedure call.

If the lambda doesn't take any parameters, simply omit the initial parenthesised list. As shown this code can only accept single-line lambdas, but it would be possible to extend it to multi-line functions using a suitable syntax to indicate the line delimiter.

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
lambdas_anonymous_functions.txt · Last modified: 2024/01/05 00:22 by 127.0.0.1