Code Monkey home page Code Monkey logo

Comments (1)

alex-gutev avatar alex-gutev commented on September 6, 2024

The function get retrieves an element from a map by key. Most commonly a map is either hash-map or a standard hash-table, however an ALIST or PLIST can also be used as a map. The get function already contains a method, specialized on lists, which treats the list as an ALIST or PLIST, depending on the whether the first element is a CONS, and retrieves the element with the given key.

The generic-cl:elt function performs the function you're looking for, retrieving an element from a sequence by index and it has methods which work on both lists and arrays. However, it doesn't have a method specialized for HASH-MAPS's that allows you to retrieve a map element by key.

If having a unified interface for retrieving a sequence element by index and by key is important, an elt method specialized on HASH-MAPS's can be added which simply treats its index argument as a key and retrieves the value of the map entry corresponding to the key.

from generic-cl.

Related Issues (7)

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.