* \returns the starting position of the block in the array of values */
| 934 | * \returns the starting position of the block <id> in the array of values |
| 935 | */ |
| 936 | Index blockPtr(Index id) const |
| 937 | { |
| 938 | if(m_blockSize == Dynamic) return m_blockPtr[id]; |
| 939 | else return id * m_blockSize * m_blockSize; |
| 940 | //return blockDynIdx(id, typename internal::conditional<(BlockSize==Dynamic), internal::true_type, internal::false_type>::type()); |
| 941 | } |
| 942 | |
| 943 | |
| 944 | protected: |