I really love perl6 and scheme. I am wondering if there are functions in perl6 that are similar to the "cons, car, cdr" functions in scheme? What I have been doing feels cumbersome:
sub cons($a, $aList) { return flat($a, $aList); } # sometimes flat is undesired;
sub car($aList) { return first($aList); }
sub cdr($aList) { return tail($aList.elems - 1); }
Thanks.
car is an acronym from the phrase Contents of the Address part of the Register; and cdr is an acronym from the phrase Contents of the Decrement part of the Register.
The function to select the first element of a list is called car . [1] The function to select the portion of a list containing all but the first element is called cdr , which is pronounced "could-er." These are analogous to first and butfirst for words and sentences.
Perl 6 lists/arrays are not linked list.
However, the Pair
type can be used to build linked lists, and provides the functionality of those three Lisp functions.
Pair
sA Pair
represents a key-value pair. For example when iterating a Hash
, you get a sequence of Pair
s.
If you think of a Pair
as a cons cell, then you can build a linked lists à la Lisp as a Pair
that has another Pair
as its value, which in turn has another Pair
as its value, and so on.
=>
operator (Pair
constructor) fulfills the role of cons..key
method fulfills the role of car..value
method fulfills the role of cdr.Example:
my $l = (1 => (2 => (3 => (4 => (5 => Nil)))));
say $l.key; # 1
say $l.value; # 2 => 3 => 4 => 5 => Nil
The =>
operator is right-associative, so that first line can also be written without the parentheses:
my $l = 1 => 2 => 3 => 4 => 5 => Nil;
If you wanted to declare the Lisp functions under their familiar names, it would look like this:
sub cons ($x, $y) { $x => $y }
sub car (Pair $y) { $y.key }
sub cdr (Pair $y) { $y.value }
Note, however, that there are no built-in convenience functions for doing list processing with such Pair
-based linked lists. So if you wanted to do the equivalent of Scheme's length or append functions etc., then you'd have to write those functions yourself. All the built-in list processing routines assume normal Perl 6 lists or compatible Iterable
types, which Pair
is not.
If you want to use normal Perl 6 lists/arrays as your data structure, but implement the behavior of the Lisp functions for them, I'd write it like this:
sub cons ($x, $y) { $x, |$y }
sub car (@y) { @y[0] }
sub cdr (@y) { @y[1..*] }
Some comments:
flat
, I used the |
operator to slip the elements of $y
into the outer list.first
function does not do what you expect in your code. It is meant for searching a list. It interprets the first argument (in your case $aList
) as a predicate, and the remaining arguments (in your case none) as the list to search, thus in your case it always returns Nil
.[ ]
positional subscripting operator instead, like I did here.return
keyword is optional; The result of the last statement of a function is automatically returned.Here's another set of functions, similar to your originals, and using prefix operators for car / cdr:
sub prefix:<car>(List $l) is tighter(&infix:<xx>) { $l.head }
sub prefix:<cdr>(List $l) is tighter(&infix:<xx>) { $l.tail(*-1).list }
sub cons($item, List $l) { ($item, |$l) }
These provide an almost lisp-ish syntax, if you wish.
my @l = (1, 2, 3, 4);
my $l = |@l;
say "Array";
say "car: ", (car @l).perl;
say "cdr: ", (cdr @l).perl;
say "List";
say "car: ", (car $l).perl;
say "cdr: ", (cdr $l).perl;
say "Literal";
say "car: ", (car (4, 3, 2, 1)).perl;
say "cdr: ", (cdr (4, 3, 2, 1)).perl;
say "cons: ", (cons car $l, cdr $l).perl;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With