Re: Native data structure for parrot?

2004-12-29 Thread Brent 'Dax' Royal-Gordon
Graciliano M. P. <[EMAIL PROTECTED]> wrote: > What I'm thinking is that in Parrot, as is in Perl, we have dynamic data > structures, like dynamic HASH and ARRAYs, with SCALARs that can grow as they > want. To write our code this help a lot, but some parts of our algorithms > need memory and speed,

Re: Win32 dynclasses build issues

2004-12-29 Thread Nicholas Clark
On Wed, Dec 29, 2004 at 12:41:12AM -, Jonathan Worthington wrote: > At the moment, the Parrot executable is building fine, but dynclasses bit > hits some problems. Some of them were down to various Win32-isms, e.g. \'s > and spaces featuring in paths. The attached patch addresses these. I

Re: Native data structure for parrot?

2004-12-29 Thread Leopold Toetsch
Graciliano M. P. wrote: Will be nice to can write this directly on Perl6: int the_matrix[10][10] ; Perl6 and thus Parrot supports arrays of native types like int and bitarrays. Also, will be nice to can use the same idea with hash tables: int , bool static_hash{1000} ; But while plain integer

Re: Win32 dynclasses build issues

2004-12-29 Thread Leopold Toetsch
Jonathan Worthington <[EMAIL PROTECTED]> wrote: > Sorry for not being about for quite a while. Time to get Parrot building > fully on Win32 again. :-) Great, thanks. > libparrot.def : error LNK2001: unresolved external symbol Parrot_setflag Obsolete API - isn't existing anymore. Removed. leo

[perl #33589] [PATCH] --no-lines and --help for ops2*.pl

2004-12-29 Thread via RT
# New Ticket Created by Bernhard Schmalhofer # Please include the string: [perl #33589] # in the subject line of all future correspondence about this issue. # http://rt.perl.org:80/rt3/Ticket/Display.html?id=33589 > Hi, on http://www.parrotcode.org/patchfaq.html there is a new mail address f

Re: Native data structure for parrot?

2004-12-29 Thread Luke Palmer
Graciliano M. P. writes: > Will be nice to can write this directly on Perl6: > > int the_matrix[10][10] ; Or rather: my int @matrix is dim(10,10); Perl 6 has been planning support for such "naive data structures" for a long time. I'm not sure about hashes. They have enough internal st

Re: ponie-2 on x86 solaris 2.5.1

2004-12-29 Thread Nicholas Clark
Thanks for trying this out. I assume that you're trying the ponie-2 tarball from CPAN? If so, that's somewhat out of date, so this might be part of the problems (but not all, I suspect). All the errors you've reported so far appear to come from parrot, rather than being ponie specific so it's prob

StringArray PMC

2004-12-29 Thread Simon Glover
Does anything actually use this PMC, or has it been completely superseded by the ResizableStringArray and FixedStringArray PMCs? Simon

[NUDGE] split on REs

2004-12-29 Thread William Coleda
I'd like to get Tcl's [namespace] implemented, but this will be very difficult until I can do: $P0 = split "::+", $S0 or something equivalent with PGE.

Re: Win32 dynclasses build issues

2004-12-29 Thread Jonathan Worthington
"Leopold Toetsch" <[EMAIL PROTECTED]> wrote: Jonathan Worthington <[EMAIL PROTECTED]> wrote: libparrot.def : error LNK2001: unresolved external symbol Parrot_setflag Obsolete API - isn't existing anymore. Removed. OK, with the attached patch (which feels kinda hacky, but works) the build completes

Re: [NUDGE] split on REs

2004-12-29 Thread Patrick R. Michaud
On Wed, Dec 29, 2004 at 08:09:10PM -0500, William Coleda wrote: > I'd like to get Tcl's [namespace] implemented, but this will be very > difficult until I can do: > > $P0 = split "::+", $S0 > > or something equivalent with PGE. Nudge noted. At the moment I've been holding off on progressing to

Re: [NUDGE] split on REs

2004-12-29 Thread William Coleda
Yes, I was using a regular expression, not a rules. =-) Patrick R. Michaud wrote: On Wed, Dec 29, 2004 at 08:09:10PM -0500, William Coleda wrote: I'd like to get Tcl's [namespace] implemented, but this will be very difficult until I can do: $P0 = split "::+", $S0 or something equivalent with PGE.