Re: [Pharo-users] Convert Literal array into Dynamic array

2017-04-17 Thread Христина Михайлюк
Thanks! But I've just handled it by using STON fromString: Khrystyna. 2017-04-17 19:14 GMT+03:00 Ben Coman : > > On Mon, Apr 17, 2017 at 1:30 AM, Христина Михайлюк < > chrismihay...@gmail.com> wrote: >> >> >> Actually, I need this interpretation {7. 8. "f"} for writing parser of >> javascript qu

Re: [Pharo-users] Convert Literal array into Dynamic array

2017-04-17 Thread Ben Coman
On Mon, Apr 17, 2017 at 1:30 AM, Христина Михайлюк wrote: > > > Actually, I need this interpretation {7. 8. "f"} for writing parser of > javascript queries which is used in MongoDB shell, to be able to execute > this with MongoQuery Pharo class. > Maybe, you could help me how to implement it? >

Re: [Pharo-users] Convert Literal array into Dynamic array

2017-04-16 Thread Христина Михайлюк
Thank you very much! Now I understand. Actually, I need this interpretation {7. 8. "f"} for writing parser of javascript queries which is used in MongoDB shell, to be able to execute this with MongoQuery Pharo class. Maybe, you could help me how to implement it? 2017-04-16 18:19 GMT+03:00 Esteba

Re: [Pharo-users] Convert Literal array into Dynamic array

2017-04-16 Thread Esteban Lorenzano
> On 16 Apr 2017, at 16:37, chrismihaylyk wrote: > > HI, friends! > > Can anyone help me how to convert literal array: #(2 3 4) > into the dynamic array: {2. 3. 4}? this is not a dynamic array (that does not exist on Pharo). check, if you do: #(2 3 4) = {2. 3. 4} ==> true and: #(2 3 4)

[Pharo-users] Convert Literal array into Dynamic array

2017-04-16 Thread chrismihaylyk
HI, friends! Can anyone help me how to convert literal array: #(2 3 4) into the dynamic array: {2. 3. 4}? Thanks a lot, Khrystyna! -- View this message in context: http://forum.world.st/Convert-Literal-array-into-Dynamic-array-tp4942305.html Sent from the Pharo Smalltalk Users mailing list ar