Minsky: 3.17.0
operationBase.h File Reference
#include "classdesc_access.h"
#include "item.h"
#include "slider.h"
#include <vector>
#include <cairo/cairo.h>
#include <arrays.h>
#include "polyBase.h"
#include "polyPackBase.h"
#include <pack_base.h>
#include "operationType.h"
#include "operationBase.cd"
#include "operationBase.xcd"
Include dependency graph for operationBase.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  minsky::OperationBase
 
class  minsky::OperationPtr
 shared_ptr class for polymorphic operation objects. Note, you may assume that this pointer is always valid, although currently the implementation doesn't guarantee it (eg reset() is exposed). More...
 

Namespaces

 ecolab
 
 minsky
 

Functions

std::ostream & operator<< (std::ostream &x, const std::vector< int > &y)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  x,
const std::vector< int > &  y 
)
inline

Definition at line 127 of file operationBase.h.

128 {
129  for (std::size_t i=0; i<y.size(); ++i)
130  x<<(i==0?"":" ")<<y[i];
131  return x;
132 }