Guest User

Untitled

a guest
Jan 13th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. /* Cifre Standard Library
  2. (c) Jeremy Tregunna, 2006, All Rights Reserved.
  3.  
  4. This program is open source software, and redistributable under the terms
  5. and conditions of the BSD Licence. */
  6.  
  7. Set := LinkedList clone do(
  8. docSlot("append(link)", "Appends the link to the end of the set. Returns the modified set.")
  9. append := method(lnk,
  10. if((self size >= 1) and self contains(lnk), return self)
  11. super(append(lnk))
  12. )
  13. )
Add Comment
Please, Sign In to add comment