Clipboard.

Strikingwolf

New Member
Jul 29, 2019
3,709
-26
1
https://github.com/Strikingwolf/LearningHaskell/blob/master/src/math/Math.hs#L29

Fibonacci sequence stuff?

1409669939572
My life, every day
Besides, when I'm watching anime... but that's productive, isn't it?

e^(i pi) = -1
Tau is better you heathen
e^(i tau) = 1
 

ljfa

New Member
Jul 29, 2019
2,761
-46
0
template<class T> bool operator==(const tag_primitive<T>& lhs, const tag_primitive<T>& rhs);
template<class T> bool operator!=(const tag_primitive<T>& lhs, const tag_primitive<T>& rhs);
 

Pyure

Not Totally Useless
Aug 14, 2013
8,334
7,191
383
Waterloo, Ontario
o Please confirm whether these are client-specific columns or hardcoded for every team

§ These are client specific

o Have we accounted for the maximum-likely number of columns screen-size-wise?

§ Jim said something like 20 but we don’t know for sure.


hmm. This is a Q&A between me and a project manager, building a hockey scouting application. Dunno why I copied it.
 

ljfa

New Member
Jul 29, 2019
2,761
-46
0
Code:
    template<class Sub>
    tag& crtp_tag<Sub>::assign(tag&& rhs)
    {
        return *this = dynamic_cast<Sub&&>(rhs);
    }