Robert Virding

Results 95 comments of Robert Virding

Just felt that the implicit equality testing felt more logic than functional. It also mapped more directly onto core erlang :-). I am not that fixed on it.

Re leex, no nothing has happened with it for a while, mainly due to lack of time, not lack of interest. I will fix it when I get the time.

@LvCodeing sorry I cannot see anything here.

Luerl does not implement Lua processes.

@markmeeus I am slowly getting around to looking through old stuff. It would be nice to do it in erlang. I checked pairs and ipairs but they return a function...

It has to do with encoding and decoding data between the "external erlang" representation of lua and the internal representation of the same. So `[{,1.0}]` is the external representation of...

Doing something as radical as changing the main the interface module will have to wait until a major revision. I have plans to change the interface as such and I...

The trouble is that the value of the of the arguments can be any valid Lua data type. Try: ``` result, error = pcall(function() ipairs(dofile) end) return result, error ```

You have discovered another bug which needs fixing first. :smile: The `ipairs` function never checks its argument and always succeeds, it is the function which it returns which checks that...

The `ipairs` and `pairs` handling of arguments has now been fixed.