Dmitri Zaitsev

Results 149 comments of Dmitri Zaitsev

@limemloh Many thanks for your quick explanation! I have found my confusion was to having missed the `yield` statement that did return the node. So perhaps that was the object...

This interesting discussion might be related: https://github.com/cyclejs/cyclejs/issues/365

@limemloh > The div function and all the functions in Turbine's element object are pretty much the same. They take an object with configurations and/or an optional child component. Here...

@limemloh Thank you again for your answers! ```js const view = loop(({inputValue}) => div([ span(inputValue), input() ])); ``` This feel somewhat "magic". How is it specified here where the `intputValue`...

@paldepind >inputValue is coming from the function itself. If the function returns Component then it will receive A as input. And yes, it seems magical. The documentation for loop admits...

Here are some points about the `scan` impurity, related to the above: https://github.com/funkia/turbine/issues/28#issuecomment-299626135

Does `.semantic()` return some kind of plain object representation of the stream?

@paldepind Thank you for the explanation, yes, it is very nice indeed, comparing with the imperative pushing and waiting. Even if the latter can feel more intuitive, being closer to...

Just wanted to share few thoughts. - It would be nice to give motivation with good examples for each concept or just provide a link. - Is the possible confusion...

> You have definitely made a lot of really good observations! 😄 Thank you 😄 And thank you for your explanations. >>What about the other combinations - apply Stream to...