This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | namespace Internal | |
| { | |
| template<typename T> struct IsContainerHelper | |
| { | |
| template<typename U, | |
| typename Require1 = decltype(std::begin(std::declval<const U&>())), | |
| typename Require2 = decltype(std::end(std::declval<const U&>()))> | |
| static std::true_type test(const U*); | |
| template<typename U> static std::false_type test(...); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | namespace ssvvm | |
| { | |
| class Value | |
| { | |
| public: | |
| enum class Type{Null, Int, Float}; | |
| private: | |
| Type type{Type::Null}; | |
| union { int implInt; float implFloat; }; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | //!ssvasm | |
| $require_registers(3); | |
| $define(R0, 0); | |
| $define(R1, 1); | |
| $define(ROutput, 2); | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | //!ssvasm | |
| $require_registers(4); | |
| $define(R0, 0); | |
| $define(R1, 1); | |
| $define(R2, 2); | |
| $define(ROutput, 3); | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <list> | |
| #include <SSVUtils/SSVUtils.hpp> | |
| volatile bool state {false}; | |
| struct TestClass | |
| { | |
| volatile int k{0}; | |
| volatile int y{0}; | |
| volatile bool todel{false}; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | template<typename T> class AABBImpl | |
| { | |
| public: | |
| using VecT = Vec2<T>; | |
| private: | |
| VecT position, halfSize; | |
| public: | |
| struct TagFromPosition { }; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| clang++ "$@" -Wall -Wextra -Wpedantic -Wshadow -Wheader-hygiene -Wcast-align -Wconversion \ | |
| -Wmissing-declarations -Wunreachable-code | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| gcc $1 -o /tmp/$1 && /tmp/$1 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <iostream> | |
| #include <SSVUtils/SSVUtils.hpp> | |
| enum class Token | |
| { | |
| Num, | |
| POpen, | |
| PClose, | |
| OpAdd, | |
| OpSub | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <SSVUtils/SSVUtils.hpp> | |
| namespace ssvu | |
| { | |
| namespace MPL | |
| { | |
| template<typename...> struct List; | |
| namespace Internal | |
| { |