Guest User

Untitled

a guest
Sep 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1.     template <typename T> T Array<T>::operator [](long long unsigned int _index) const {
  2.         return icontent[_index]; }
  3.  
  4.     bool Buffer::operator [](int _index) const {
  5.         int bit(1 >> (_index % 8));
  6.         return bit == (bit & iarray[_index / 8]); } // iarray ist ein objekt von Array
Add Comment
Please, Sign In to add comment