Search Results

Search found 4 results on 1 pages for 'dony borris'.

Page 1/1 | 1 

  • Resources for learning Monads, Functors, Monoids, Arrows etc

    - by Dony Borris
    Can you people please suggest some good books / weblinks from where I can get to learn about above mentioned concepts? (Please note that I am a Java programmer and have NO prior experience with functional programming. I have been studying Scala since last one month and would appreciate the resources that try to teach the above mentioned concepts with Scala. (or even Java, if posible))

    Read the article

  • Is it a good practice to always use smart pointers ?

    - by Dony Borris
    Hi, I find smart pointers to be a lot more comfortable than raw pointers. So is it a good idea to always use smart pointers? ( Please note that I am from Java background and hence don't much like the idea of explicit memory management. So unless there are some serious performance issues with smart pointers, I'd like to stick with them. ) Any advice would be greatly appreciated. Thanks.

    Read the article

  • Problem with std::ostringstream

    - by Dony
    Hi, I tried to make the code #1 more terse by changing it to code #2 but it doesn't work as expected. Can anyone please tell me why it doesn't work? Thanks. Code #1 double x = 8.9, y = 3.4, z = -4.5; std::ostringstream q0; q0 << "(" << x << "," << y << "," << z << ")"; std::string s = q0.str(); Code #2 double x = 8.9, y = 3.4, z = -4.5; std::string s = static_cast<std::ostringstream &>( std::ostringstream() << "(" << x << "," << y << "," << z << ")").str(); EDIT : Even code #3 works. Then why does code #2 not? Code #3 double x = 8.9, y = 3.4, z = -4.5; std::string s = static_cast<std::ostringstream *>( &(std::ostringstream() << "(" << x << "," << y << "," << z << ")"))->str();

    Read the article

  • Why does the following not work?

    - by Dony
    Hi, I tried to make the code #1 more terse by changing it to code #2 but it doesn't work as expected. Can anyone please tell me why it doesn't work? Thanks. Code #1 std::ostringstream q0; q0 << "(" << x << "," << y << "," << z << ")"; std::string s = q0.str(); Code #2 double x = 8.9, y = 3.4, z = -4.5; std::string s = static_cast<std::ostringstream &>( std::ostringstream() << "(" << x << "," << y << "," << z << ")").str();

    Read the article

1