Git Product home page Git Product logo

Comments (3)

CarterLi avatar CarterLi commented on May 20, 2024 1

But it's ugly.

coro::enumerable<int> test() {
    int i = 1;
    co_yield i;
}

from coroutine.

luncliff avatar luncliff commented on May 20, 2024

@CarterLi enumerable should be used with reference.
Most of generators are allowing T&&, but it doesn't.

// `co_yield` expression. only for reference
auto yield_value(reference ref) noexcept {
current = std::addressof(ref);
return suspend_always{};
}

The reason for such restriction is to enforce users to reuse existing variable in the coroutine frame.
For example, the code below is reusing the object io_task_t task{};.

auto enumerate_net_tasks(nanoseconds timeout) noexcept(false)
-> coro::enumerable<io_task_t> {
const int half_time = duration_cast<milliseconds>(timeout).count() / 2;
io_task_t task{};
for (auto event : inbound.wait(half_time))
co_yield task = io_task_t::from_address(event.data.ptr);
for (auto event : outbound.wait(half_time))
co_yield task = io_task_t::from_address(event.data.ptr);
}

from coroutine.

luncliff avatar luncliff commented on May 20, 2024

Well, indeed I agree with the point. Let me change that.
But I couldn't work on this project recently and probably the state will remain unchanged for more upcoming weeks... I'm really sorry about that. I will work as soon as possible and let you know.

If you're in an urgent situation, you can try existing generator implementations in https://github.com/Quuxplusone/coro. I strongly recommend those works.

from coroutine.

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.