Jump to content

Undocumented functions


Recommended Posts

No need for it, they are part of the final function GEN-ROTATE:

    

(gen-rotate 2 '(c4 d4 e4 g4 a4))

=> (g4 a4 c4 d4 e4)

 

(gen-rotate -2 '(c4 d4 e4 g4 a4))

=> (e4 g4 a4 c4 d4)

 

The keywords :left and :right are equivalents of the integer values -1 and 1. We can also use :type :seq to generate multiple lists for an entire rotation of the items in list:

 

(gen-rotate :left '(1 2 3 4) :type :seq)

=> ((1 2 3 4) (4 1 2 3) (3 4 1 2) (2 3 4 1))

 

Generate a sequence based on a rotation of 2 places right:

 

(gen-rotate 2 '(1 2 3 4 5) :type :seq)

=> ((1 2 3 4 5) (5 1 2 3 4) (4 5 1 2 3))

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

Terms of Use Privacy Policy