Coder Social home page Coder Social logo

Comments (2)

charlesstaats avatar charlesstaats commented on July 1, 2024

Additional note: It appears that the reverse function for arrays is an undocumented convenience implemented for certain types in plain.asy, not a general function like sequence or map as I had assumed. So this is not a high priority.

from asymptote.

charlesstaats avatar charlesstaats commented on July 1, 2024

I'd even go further and observe that if you want to make reverse work the same way as it works for paths, you'd have to change the order of the elements. If you take a cyclic path with vertices a,b,c,d,e in that order and reverse it, you get a cyclic path starting in the same place with vertices a,e,d,c,b; whereas reversing an array would give you e,d,c,b,a. Changing the behavior this drastically for cyclic arrays could break things for very limited gain (given the limited nature of the reverse functions), so I'm going to close this as not feasible.

That having been said, if you want to write your own reverse function for a arrays of a given type and have it imitate the behavior of reversing a path, it could be written like this:

T[] reverse(T[] array) {
  if (array.cyclic) {
    T[] toreturn = array[-sequence(array.length)];
    toreturn.cyclic = true;
    return toreturn;
  } else {
    return array[reverse(array.length)];
  }
}

from asymptote.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.