Is Zephir supported use keyword in closure? · Issue #1318 · zephir-lang/zephir

the code here:https://docs.zephir-lang.com/en/latest/closures.html namespace MyLibrary; class Functional { public function map(array! data) { return function(number) { return number * number; }; } ...