rollo-b2c2

Results 3 issues of rollo-b2c2

How can I create a Singleton object based on a generator? For example ``` def session_factory(connection): with connection() as conn: session = Session(bind=conn) yield session try: session.commit() except: session.rollback() finally:...

question

I was looking at the implementation of use store and I saw it used a threadlocal to do the global state. If a component is dismounted, and it’s the only...

#### Description This allows you to import layout_test into your crates as described in the docs. As you can't import things behind `#[cfg(test)]`. https://yew.rs/docs/more/testing I think this was the _intent_...