Giter VIP home page Giter VIP logo

Comments (3)

JohnCoconut avatar JohnCoconut commented on June 25, 2024

I found it, the get and put are defined in global namespace in <boost/property_map/property_map.hpp>. And it explained why ADL does not work here.

  // These need to go in global namespace because Koenig
  // lookup does not apply to T*.

  // V must be convertible to T
  template <class T, class V>
  inline void put(T* pa, std::ptrdiff_t k, const V& val) { pa[k] = val;  }

  template <class T>
  inline const T& get(const T* pa, std::ptrdiff_t k) { return pa[k]; }

I will leave it open for a day in case other people are interested.

from boost_graph_cookbook_1.

JohnCoconut avatar JohnCoconut commented on June 25, 2024

Actually, I might be wrong. The get and put signature doesn't look quite similar to the signatures in boost graph library, get(boost::vertex_name, g).

from boost_graph_cookbook_1.

richelbilderbeek avatar richelbilderbeek commented on June 25, 2024

Well spotted! You can assume that I try hard to be consistent and I would not omit boost:: without reason.

I suggest to close this Issue, others can find it by searching the GitHub from now. Agree? If yes, please close 👍

from boost_graph_cookbook_1.

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.