Code Monkey home page Code Monkey logo

Comments (7)

ryanhaining avatar ryanhaining commented on July 3, 2024

std::optional doesn't support reference types. I can use a std::optional<std::reference_wrapper<T>> but that'll throw off uses with assignment

from cppitertools.

xjjgjmeng avatar xjjgjmeng commented on July 3, 2024

Is it possible to replace boost::optional with C Pointers in zip_longest?

from cppitertools.

ryanhaining avatar ryanhaining commented on July 3, 2024

I can't imagine how, do you have something in mind?

from cppitertools.

xjjgjmeng avatar xjjgjmeng commented on July 3, 2024
#include <zip_longest.hpp>

#include <vector>
#include <string>
#include <iostream>

int main() {
    std::vector<int> ivec{1, 4, 9, 16, 25, 36};
    std::vector<std::string> svec{"hello", "good day", "goodbye"};

    // i: int*
    // s: std::string*
    for (auto&& [i, s] : iter::zip_longest(ivec, svec)) {
        if (i) {
            std::cout << *i << std::endl;
        }

        if (s) {
            std::cout << *s << std::endl;
        }
    }
}

from cppitertools.

ryanhaining avatar ryanhaining commented on July 3, 2024

of course you could implement a zip_longest like that, but changes to the yielded type cannot break existing uses.

from cppitertools.

xjjgjmeng avatar xjjgjmeng commented on July 3, 2024

Changing the type to a pointer doesn't change the existing usage, does it?

from cppitertools.

ryanhaining avatar ryanhaining commented on July 3, 2024

I can't change the library in a way that breaks existing users if they update to a newer version of the library.

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.