lua-users home
lua-l archive

Search lua-l

This index contains 143,615 documents and 1,774,615 keywords. Last update on 2023-03-09 .

Query: [How to search]

Display: Description: Sort by:

Results:

References: [ fixed: 3894 ] [ point: 15188 ]

Total 640 documents matching your query.

161. Re: Lua/LuaJIT2 performance on Android (score: 16)
Author: Michal Kottman <k0mpjut0r@...>
Date: Tue, 19 Apr 2011 17:44:15 +0200
I really like your "marketing" :) Can't wait for for it... I have one (maybe dumb) question - usually, when floating point performance of a CPU is bad, you can make use of fixed point arithmetics usi
162. Re: Project lead nominations for standard libraries? (score: 16)
Author: Henning Diedrich <hd2010@...>
Date: Fri, 31 Dec 2010 18:59:05 +0100
[..] whether there are other issues that come up routinely that could be solved with some targeted code in a standard library or whether the length operator v holes is unique in this regard. There wi
163. Re: Bit ops on boolean arrays? (score: 16)
Author: David Manura <dm.lua@...>
Date: Thu, 30 Dec 2010 21:54:00 -0500
For one thing, tables are often not very useful as table keys. Do you want to use bit arrays as table keys? This fails even if an __eq metamethod is defined: t[{true,false}] = true; assert(t[{true,fa
164. RE: Is a Lua system easily embeddable? (score: 16)
Author: "John Hind" <john.hind@...>
Date: Mon, 7 Sep 2009 09:50:47 +0100
Of course, another approach is to use virtual file systems (such as FUSE or Windows 7 VHD). The "EXE" would actually be a VFS with code to mount it and then start a secondary EXE within the VFS. The
165. Re: Odd behaviour with multiple return values and varargs (score: 16)
Author: Adrien de Croy <adrien@...>
Date: Fri, 14 Sep 2007 10:33:35 +1200
I wonder if there's some reason no other language (that I know of anyway) allows more than one return value for a function. Maybe because it's not such a great idea to have a non-deterministic number
166. Re: Odd behaviour with multiple return values and varargs (score: 16)
Author: Richard Warburton <richard@...>
Date: Fri, 14 Sep 2007 10:09:54 +1200
Tom Miles wrote: I'm not sure I understand your point. In my mind, if I have two functions returning 2 values, then I have 4 values plain and simple. It would be treated exactly the same as print(1,2
167. Re: Lua forwarding DLL (score: 16)
Author: Shmuel Zeigerman <shmuz@...>
Date: Wed, 23 May 2007 21:01:37 +0200
Jerome Vuarand wrote: Shmuel Zeigerman wrote: I suppose it may be due to old versions of GCC (3.4.2) and LD (2.15.91) that are installed on my system. I used MinGW 5.0.2 which comes with gcc 3.4.4, l
168. Re: Lua is about to become history (score: 16)
Author: Chris Marrin <chris@...>
Date: Wed, 03 May 2006 07:53:43 -0700
I think you have to be very careful about making this case. How tolerant of backwards-incompatibility do you thing the Lua user base would be if the Lua authors modernized the language to support ze
169. Re: Lua is about to become history (score: 16)
Author: Reuben Thomas <rrt@...>
Date: Wed, 3 May 2006 12:55:26 +0100 (BST)
I think you have to be very careful about making this case. How tolerant of backwards-incompatibility do you thing the Lua user base would be if the Lua authors modernized the language to support ze
170. GC by tracking (score: 16)
Author: skaller <skaller@...>
Date: 08 Jan 2005 13:35:52 +1100
LOL! I have a feeling you are trying too hard: you're trying to calculate when to do what and by how much.. It's impossible and unnecessary -- you should be much lazier. I'm very serious about this,
171. static & dynamic linkage (score: 16)
Author: Asko Kauppi <asko.kauppi@...>
Date: Mon, 7 Jun 2004 11:14:33 +0300
Just for a reference, this is how LuaX allows static/dynamic linkage of a module: - No changed necessary in module source code (this is important!) - By default, modules are compiled dynamically, 'Gl
172. Lua and exact real arithmetic (score: 16)
Author: Gavin Wraith <gavin@...>
Date: Sun, 17 Feb 2002 13:01:26 +0000 (GMT)
Thank you Luiz Henrique for sending 4.1-work4. I suspect that my original http transfer got cut short. I was praising Lua yesterday to an ex-student of mine who is about to take up a job with a Dutch
173. Re: Could metatables easily be faster? (score: 15)
Author: Flyer31 Test <flyer31@...>
Date: Fri, 20 May 2022 09:10:41 +0200
So you mean, this would work already for current Lua 5.4? Without change of Lua source code? Sorry for too many questions... I do not really understand how you would use "fixed userdata" to instruct
174. Re: How to comprehend that Lua automatically removes whatever is in the stack below the results after the function returned? (score: 15)
Author: bel <bel2125@...>
Date: Thu, 24 Sep 2020 23:57:11 +0200
175. Re: How to comprehend that Lua automatically removes whatever is in the stack below the results after the function returned? (score: 15)
Author: ??? sunshilong <sunshilong369@...>
Date: Thu, 24 Sep 2020 15:26:21 +0800
Hi, bel TLSF is a good choice. What do you think about it? Or any other available choice? And I agree that the allocator function is the key factor. But as you said that the "special" purpose real-ti
176. Re: [ANN] lua-bint - Arbitrary precision integer arithmetic library in pure Lua (score: 15)
Author: Eduardo Bart <edub4rt@...>
Date: Fri, 10 Jul 2020 15:21:10 -0300
Counting number of bits in what context? The library doesn't have this function, I do shift in one bit in integer pow functions but it's not much with the intention of counting bits. What I would lik
177. Re: [ANN] lua-bint - Arbitrary precision integer arithmetic library in pure Lua (score: 15)
Author: Philippe Verdy <verdyp@...>
Date: Fri, 10 Jul 2020 20:04:23 +0200
Counting the number of bits can be improved a lot instead of using successive shifts by 1 bit, you can at least compute the number of bits set in a 32 bit integer in a very few operations, without an
178. Re: [ANN] lua-bint - Arbitrary precision integer arithmetic library in pure Lua (score: 15)
Author: Eduardo Bart <edub4rt@...>
Date: Fri, 10 Jul 2020 10:41:29 -0300
That is a good point, thus I've slightly changed the library initialization APIs to avoid conflicts when using different precisions between different project parts, this is good now too because allow
179. Re: LuaRocks query: LuaSec compiler warnings... (score: 15)
Author: Bruno Silvestre <bruno.silvestre@...>
Date: Thu, 17 Oct 2019 11:43:09 -0300
This problem came from LuaSocket. Luarocks is installing it as dependency. from LuaSocket 3.0-RC1, file src/option.c:40,41 char msg[45]; sprintf(msg, "unsupported option `%.35s'", name); It was fixed
180. Re: require() parse error in 5.3.4/5.4.0-work2? (score: 15)
Author: Kenneth Lorber <keni@...>
Date: Sun, 1 Jul 2018 06:04:33 -0400
Ok, good argument for this being a change request and not a bug report. Agreed. I did. It took about 6 hours for a prototype implementation. Someone who knows lua internals better than I do should b

Search by Namazu v2.0.21