• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. What is the difference between ~> and ->

Stats

  • Locked Locked
  • Replies 2
  • Subscribers 143
  • Views 5745
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

What is the difference between ~> and ->

howardhaoracle
howardhaoracle over 12 years ago

Hi.. 

Please explain the difference between using ~> and ->  ?? When do you use ~>  or ->?

I looked at some Skill codes and I see both are used

 Thanks for your explanation..

Howard

 

  • Cancel
Parents
  • Andrew Beckett
    Andrew Beckett over 12 years ago

    What Lawrence says is not strictly correct. Actually you can use the -> and ~> interchangeably except on lists, where they behave differently. With a list, if you use -> then you are treating the list as a disembodied property list where you have a list with a dummy value first (often nil) followed by key/value pairs where the key is a symbol. So for example:

    dpl=list(nil)
    dpl->colour="red"
    dpl->shape="circle"

    then:

     > dpl
    (nil shape "circle" colour "red")
    > dpl->shape
    "circle"
    > dpl->shape="square"
    "square"
    > dpl->shape
    "square"
    > dpl
    (nil shape "square" colour "red")

    If you use ~> on a list, then it effectively does a foreach mapcar over the list, applying the ~> operator on each member of the list and returning a list of the results. This is as Lawrence mentioned above. So doing:

    cv~>nets~>name

    is like doing:

    foreach(mapcar net cv~>nets net~>name)

    but obviously shorter and more to the point.

    So ~> can be used for windows, menu structures, form structures, tables and so on - just not disembodied property lists.

    Regards (and sorry to be pedantic!),

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Andrew Beckett
    Andrew Beckett over 12 years ago

    What Lawrence says is not strictly correct. Actually you can use the -> and ~> interchangeably except on lists, where they behave differently. With a list, if you use -> then you are treating the list as a disembodied property list where you have a list with a dummy value first (often nil) followed by key/value pairs where the key is a symbol. So for example:

    dpl=list(nil)
    dpl->colour="red"
    dpl->shape="circle"

    then:

     > dpl
    (nil shape "circle" colour "red")
    > dpl->shape
    "circle"
    > dpl->shape="square"
    "square"
    > dpl->shape
    "square"
    > dpl
    (nil shape "square" colour "red")

    If you use ~> on a list, then it effectively does a foreach mapcar over the list, applying the ~> operator on each member of the list and returning a list of the results. This is as Lawrence mentioned above. So doing:

    cv~>nets~>name

    is like doing:

    foreach(mapcar net cv~>nets net~>name)

    but obviously shorter and more to the point.

    So ~> can be used for windows, menu structures, form structures, tables and so on - just not disembodied property lists.

    Regards (and sorry to be pedantic!),

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information