Skip to content

Latest commit

 

History

History
103 lines (59 loc) · 2.3 KB

multi_iter.rst

File metadata and controls

103 lines (59 loc) · 2.3 KB

multi_iter

概要

namespace boost
{
namespace python
{
namespace numpy
{

class multi_iter : public object
{
public:
  void next();
  bool not_done() const;
  char * get_data(int n) const;
  int const get_nd() const;
  Py_intptr_t const * get_shape() const;
  Py_intptr_t const shape(int n) const;
};


multi_iter make_multi_iter(object const & a1);
multi_iter make_multi_iter(object const & a1, object const & a2);
multi_iter make_multi_iter(object const & a1, object const & a2, object const & a3);

}
}
}

コンストラクタ

returns

与えた 1 つから 3 つのシーケンスをブロードキャストする Python イテレータオブジェクト。

アクセッサ