/usr/include/openturns/swig/Field.i is in libopenturns-dev 1.7-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | // SWIG file Field.i
%{
#include "Field.hxx"
%}
%include Field_doc.i
OTTypedInterfaceObjectHelper(Field)
%include Field.hxx
namespace OT {
%extend Field {
Field(const Field & other)
{
return new OT::Field(other);
}
NumericalPoint __getitem__ (SignedInteger index) const
{
if (index < 0) {
index += self->getSize();
}
return self->getValueAtIndex(index);
}
void __setitem__ (SignedInteger index,
const NumericalPoint & val)
{
self->copyOnWrite();
if (index < 0) {
index += self->getSize();
}
self->setValueAtIndex(index, val);
}
UnsignedInteger __len__() const
{
return self->getSize();
}
} // Field
} // OT
|