Monday, March 1, 2021

Re: Vim9: call function from variadic function?

> This might be a bit of a stretch, but... is it possible to
> "expand/split" variable arguments to call another function with fixed
> arguments? I would like to define a function that takes as input another
> function F and some values v1, vn... , and applies F to v1, ..., vn.
>
> For example, I can define:
>
> def F(a: string, b: number)
> enddef
>
> def G(...values: list<any>): void
> F(values[0], values[1])
> enddef
>
> G('xyz', 42)
>
> I would like to generalize G so that it can invoke any function, i.e.:
>
> def G2(F: func, ...values: list<any>): void
> F(XXXX)
> enddef
>
> G2(F, 'xyz', 42)
>
> The problem is: what can I put in place of XXXX? F(values) doesn't cut
> it.

Why not use call():
call(F, ['xyz', 42])

Or, if you need G2() to do something more:
def G2(F: func, ...values: list<any>): void
call(F, values)
enddef

--
No man may purchase alcohol without written consent from his wife.
[real standing law in Pennsylvania, United States of America]

/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/202103011824.121IOcZ01020571%40masaka.moolenaar.net.

No comments: