Search lua-l
This index contains 143,615 documents and
1,774,615 keywords. Last update on
2023-03-09 .
- 181. Re: require() parse error in 5.3.4/5.4.0-work2? (score: 15)
- Author: Stephen Irons <stephen@...>
- Date: Thu, 28 Jun 2018 16:20:12 +1200
- On Jun 23, 2018, at 8:57 AM, Andrew Gierth <andrew@tao11.riddles.org.uk<mailto:andrew@tao11.riddles.org.uk>> wrote: [...] To me it is about flexibility, multiple return values, and the ability to onl
- 182. Re: Quest: real world "Lua array with holes" usage (score: 15)
- Author: Thomas Jericke <tjericke@...>
- Date: Tue, 26 Jul 2016 09:30:39 +0200
- Of course any function can return nil among its returns, but maybe that might be considered a bad practice. My point is that, if nil is representing the absence of a value, it is weird not to have a
- 183. Re: [Suggestion] Define t[[[]]] to index t with a long string (score: 15)
- Author: Coda Highland <chighland@...>
- Date: Sat, 10 Oct 2015 22:40:15 -0700
- Oh, I know. The point is that the C++ example isn't particularly applicable to the discussion at hand. /s/ Adam
- 184. [ANN] vstruct 2.0 released (score: 15)
- Author: Ben Kelly <bk@...>
- Date: Tue, 27 Jan 2015 16:35:31 -0500
- vstruct 2.0 for Lua 5.1/5.2 and LuaJIT is now available! You can get it on github: https://github.com/toxicfrog/vstruct/releases And report issues there as well: https://github.com/toxicfrog/vstruct/
- 185. Re: ## operator (error) (score: 15)
- Author: Axel Kittenberger <axkibe@...>
- Date: Sun, 23 Nov 2014 22:05:08 +0100
- But these ?alphabetic numeral? strings that (obviously) denoted nu To help you understand my point better, think of a very simple and common application. If you want to center a number within some f
- 186. Re: Pooling of strings is good (score: 15)
- Author: Jay Carlson <nop@...>
- Date: Sat, 23 Aug 2014 07:28:03 -0400
- Yes. "I am aware of all Internet traditions." Yes. It is also a relatively common error to reuse bufs/pool members before all references to them have dropped. ...and may break with a mutable string t
- 187. Re: Please add warning to download page if tarball isn't patched up with all latest security fixes (score: 15)
- Author: Jonas Thiem <jonasthiem@...>
- Date: Thu, 21 Aug 2014 16:36:14 +0200
- I think they are unaware that there is no patched release with a possibly updated patch version number of all those reported bugs in a timely fashion. Nobody is suggesting rerelase with exactly the s
- 188. Re: Please add warning to download page if tarball isn't patched up with all latest security fixes (score: 15)
- Author: Dirk Laurie <dirk.laurie@...>
- Date: Thu, 21 Aug 2014 16:33:10 +0200
- 2014-08-21 15:49 GMT+02:00 Jonas Thiem <jonasthiem@googlemail.com>: There is an official bugs/patches page: <http://www.lua.org/bugs.html> which any reasonably experienced Lua user consults from time
- 189. Re: Please add warning to download page if tarball isn't patched up with all latest security fixes (score: 15)
- Author: Jonas Thiem <jonasthiem@...>
- Date: Thu, 21 Aug 2014 15:49:40 +0200
- I think the common practise is to add an additional number for the patch level. However, I understand Lua doesn't want to rerelase fixed tarballs due to lack of time - but at least the download page
- 190. Re: [ANN] stdlib 36 released (score: 15)
- Author: "Gary V. Vaughan" <gary@...>
- Date: Sat, 18 Jan 2014 12:30:48 +1300
- Just a quick note that I've fixed all the issues below in the just released stdlib v37: Now a done item. Thanks for the prod. Added a workaround for the LuaRocks install bug v36 tripped in the new v3
- 191. Re: pairs(t, skey) and ipairs(t, skey) (score: 15)
- Author: Tim Hill <drtimhill@...>
- Date: Sun, 6 Oct 2013 17:37:50 -0700
- i think we're saying the same thing from a different viewpoint .. there is a certain amount of work to be done, and it can either be done late (at # time, with O(n) cost) or early (at insert time, wi
- 192. RE: [ANN] ZeroBrane Studio 0.32; now with unicode support, moai integration, and wxlua 2.8.12 upgrade (score: 15)
- Author: Jeff Smith <spammealot1@...>
- Date: Fri, 7 Sep 2012 00:07:11 +0100
-
- 193. Re: What do you miss most in Lua (score: 15)
- Author: Miles Bader <miles@...>
- Date: Tue, 07 Feb 2012 14:29:02 +0900
- Even what you're suggesting sounds pretty heavy-weight. I think many people looking at the issue try too hard to come up with some pretty abstraction, but that the actual benefit to users of these ab
- 194. Lua Tables (score: 15)
- Author: Sandeep Ghai <sandeep.ghai92@...>
- Date: Tue, 17 Jan 2012 09:29:58 -0500
- Hello Everyone, I am learning Lua starting from the basics. I am right now doing with 'Tables'. But I am stuck at some point. I have read upto the tables having two columns. Can anybody help me in m
- 195. Deterministic hashing for lua tables (score: 15)
- Author: hollyrosella@...
- Date: Fri, 16 Dec 2011 02:33:26 +0000
- I am working on a fully deterministic Lua, and I gather that one source of indeterminacy in a script's execution is that Lua tables hash objects according to their positions in memory, and traversing
- 196. Re: A very basic thing I don't get (score: 15)
- Author: joao lobato <btnfdp.lobato@...>
- Date: Wed, 5 Oct 2011 20:45:17 +0100
- Indeed. Tables are a corner stone of what Lua is and one of the reasons why I like Lua. My only problem with the "roll your own data structures" is how can one do it without more basic blocks? Imagin
- 197. Re: Cons, tuple and __slots__ -- a simple mechanism to implement them in Lua (score: 15)
- Author: Xavier Wang <weasley.wx@...>
- Date: Fri, 16 Sep 2011 14:11:41 +0800
- 2011/9/16 Dirk Laurie <dpl@sun.ac.za>: No, TValue values[1] is not equal with TValue *values, because I put values *inside* the userdata, i.e. current userdata layout is: [common header][userdata fie
- 198. Re: Cons, tuple and __slots__ -- a simple mechanism to implement them in Lua (score: 15)
- Author: Dirk Laurie <dpl@...>
- Date: Fri, 16 Sep 2011 07:48:19 +0200
- Your suggestion is to change the implementation of userdata so that the following tasks become easy and efficient: ... ... ... The change is visible at the level of the C API but not at the level of
- 199. Re: [LuaJIT] compile LuaJIT ARM port for Symbian fault with linker error (score: 15)
- Author: Xavier Wang <weasley.wx@...>
- Date: Sat, 4 Jun 2011 17:35:15 +0800
- 2011/6/4 Mike Pall <mikelu-1106@mike.de> I've fixed log2()/exp2() for now. The dependency on trunc() will go away, once I add ARM assembler versions for floor/ceil/trunc (the soft-float functions in
- 200. Re: [LuaJIT] compile LuaJIT ARM port for Symbian fault with linker error (score: 15)
- Author: Mike Pall <mikelu-1106@...>
- Date: Fri, 3 Jun 2011 20:11:07 +0200
- I've fixed log2()/exp2() for now. The dependency on trunc() will go away, once I add ARM assembler versions for floor/ceil/trunc (the soft-float functions in libc are incredibly slow). I'm not sure w
Search by
Namazu v2.0.21