IMP Reference Guide
2.11.0
The Integrative Modeling Platform
|
Macros to handle array indexing. More...
#include <IMP/kernel_config.h>
Go to the source code of this file.
Macros | |
#define | IMP_BRACKET(Value, Index, bounds_check_expr, expr) |
Implement operator[] and at() for C++, and getitem for Python. More... | |
#define | IMP_CONST_BRACKET(Value, Index, bounds_check_expr, expr) |
Implement operator[] and at() for C++, and getitem for Python. More... | |
Macros to handle array indexing.
Copyright 2007-2019 IMP Inventors. All rights reserved.
Definition in file bracket_macros.h.
#define IMP_BRACKET | ( | Value, | |
Index, | |||
bounds_check_expr, | |||
expr | |||
) |
Implement operator[] and at() for C++, and getitem for Python.
The index type is Index and the expression that returns the value is expr. Like the equivalent methods in std::vector, at() performs bound checking; if the bounds_check_expr is false, then a UsageException is thrown. operator[] does no bounds checks, except in debug mode. In Python, bounds checking is always done and results in an IndexException if bounds_check_expr is false.
Definition at line 22 of file bracket_macros.h.
#define IMP_CONST_BRACKET | ( | Value, | |
Index, | |||
bounds_check_expr, | |||
expr | |||
) |
Implement operator[] and at() for C++, and getitem for Python.
The index type is Index and the expression that returns the value is expr. The value returned is not mutable. Like the equivalent methods in std::vector, at() performs bound checking; if the bounds_check_expr is false, then a UsageException is thrown. operator[] does no bounds checks, except in debug mode. In Python, bounds checking is always done and results in an IndexException if bounds_check_expr is false.
Definition at line 37 of file bracket_macros.h.