newLISP Fan Club

Forum => Anything else we might add? => Topic started by: Cyril on January 31, 2008, 04:52:38 PM

Title: Name for a macro?
Post by: Cyril on January 31, 2008, 04:52:38 PM
I have always felt that appending an element to the right of the list or string is a very important operation. What do I like in newlisp, it is its ability to pass -1 as a third argument to 'push'. But writing -1 explicitly is boring, and arguments order seems unnatural. 'push @lst, $elt;' from Perl is much better, but 'push' is already defined in other way in newlisp. Of course I can define my own macro in a trivial way, but I stumbled at a name for it. I am not a native English speaker, so I don't know which verb looks natural to the most of you here. My current solution is 'tack':


(define-macro (tack _a _b)
  (push (eval _b) (eval _a) -1))

(tack filename ".ext")


Does anyone have a better idea?
Title:
Post by: Jeff on January 31, 2008, 05:50:33 PM
shove
Title:
Post by: HPW on January 31, 2008, 10:33:55 PM
Whats wrong with:



(append filename ".ext")
Title:
Post by: Cyril on February 01, 2008, 05:28:36 AM
Quote from: "HPW"Whats wrong with:



(append filename ".ext")


Non-destructiveness. I want to modify filename.
Title:
Post by: Jeff on February 01, 2008, 05:37:56 AM
concat
Title:
Post by: Cyril on February 01, 2008, 05:52:15 AM
Quote from: "Jeff"concat


'concat' and 'append' look like pure functions for me. Seeing such a word in the code, I assume that result is yield and arguments leaved intact. On the other hand, 'push', 'tack' and 'shove' look like actions. More then, like brutal and destructive actions. I readily believe that they are breaking their arguments. But there are my deep-in-mind associations, and I am not a native English speaker. Maybe other people feel it in other way. And yes, I opine that good mnemonics matters.
Title:
Post by: Lutz on February 01, 2008, 05:52:38 AM
> (set 'var "filename")
"filename"
> (write-buffer var ".ext")
4
> var
"filename.ext"
>


remember 'write-buffer' and 'write-line' do append to a string when given a string instead of a file handle ;-)



Lutz
Title:
Post by: Cyril on February 01, 2008, 06:03:04 AM
Quote from: "Lutz"remember 'write-buffer' and 'write-line' do append to a string when given a string instead of a file handle ;-)


Oh, this works! I'll remember this for the rest of my life, I promise! ;-)
Title:
Post by: Jeff on February 01, 2008, 06:07:10 AM
Lutz,



Is there a way to set stdout inside an application so that all print and println output is written to a buffer?
Title:
Post by: Lutz on February 01, 2008, 06:36:12 AM
There is the 'device' function, but it only works with files:


> (device (open "buffer" "w"))
3
> (println "hello world")
"hello world"
> (close (device))
true
> !cat buffer
hello world
>


Lutz
Title:
Post by: Jeff on February 01, 2008, 06:50:09 AM
I know.  That would be too slow.  I was hoping for something more along the lines of using device to assign stdin to a string-buffer so that print would act more like write-buffer.
Title:
Post by: m35 on February 01, 2008, 08:48:01 AM
Abstracting streams is probably my favorite use of OOP. I suppose the lispy way of doing it is to pass a function that performs the write?



I haven't used FOOP at all yet. I wonder how it would look using that.
Title:
Post by: Cyril on February 01, 2008, 09:36:31 AM
Quote from: "m35"I suppose the lispy way of doing it is to pass a function that performs the write?


I have no clue how other people do it, but my experimental 'sxml2xml' function accepts an output function as argument. It is called like '(sxml2xml print pattern 4)', you can also pass '(curry net-send soc)' or '(curry write-buffer buf)' instead or 'print'.
Title:
Post by: Fanda on February 02, 2008, 02:53:38 PM
Quote from: "Jeff"concat


Actually, I would suggest something similar. I like how other LISPs use '!' at the end of their functions to imply destructive behaviour. It makes it very clear. See for example dotlisp:

http://dotlisp.sourceforge.net/dotlisp.htm#Lists



Fanda