Code Monkey home page Code Monkey logo

Comments (3)

ryanhaining avatar ryanhaining commented on July 22, 2024

This looks like a constness issue with range::Iterator::operator*(); (not
being marked const of course). For this limited case it might work just as
well to make the range operator* a const member, but that doesn't
generalize well. This hints at a bigger issue I suspected would need
addressing eventually. It seems that time has come today!

On Tue, Sep 23, 2014 at 3:13 AM, iliocatallo [email protected]
wrote:

Hi,

with respect to #16
#16, I was trying to
filter out the upper right corner of the matrix using iter::filter.
Here's the showcase code:

int main() {

auto range = iter::product(iter::range(10), iter::range(5));

for (auto&& ij: iter::filter([](std::tuple<unsigned, unsigned> const& c) {return std::get<0>(c) >= std::get<1>(c);}, range))
    std::cout << std::get<0>(ij) << "," << std::get<1>(ij) << std::endl;

Unfortunately, this does not compile. Clang reads:

error: indirection requires pointer operand ('const iterator_typeiter::Productor<iter::Range<int, iter::Range > &>' (aka 'const iter::Productoriter::Range<int, iter::Range >::Iterator') invalid)
return *this->sub_iter;

Same error if I replace iter::filter with boost::adaptors::filtered, so I
presume the error should be in iter::Producter.

Thanks.


Reply to this email directly or view it on GitHub
#17.

from cppitertools.

ryanhaining avatar ryanhaining commented on July 22, 2024

nevermind. this is gonna run deeper than expected.

from cppitertools.

ryanhaining avatar ryanhaining commented on July 22, 2024

fixed with d043887

from cppitertools.

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.