Norimasa Okamoto
/
pymite
python-on-a-chip online compiler
- http://pymbed.appspot.com/
- https://code.google.com/p/python-on-a-chip/
- http://www.youtube.com/watch?v=Oyqc2bFRW9I
- https://bitbucket.org/va009039/pymbed/
more info: python-on-a-chip
vm/seq.h
- Committer:
- va009039
- Date:
- 2013-03-02
- Revision:
- 0:65f1469d6bfb
File content as of revision 0:65f1469d6bfb:
/* # This file is Copyright 2006 Dean Hall. # This file is part of the PyMite VM. # This file is licensed under the MIT License. # See the LICENSE file for details. */ #ifndef __SEQ_H__ #define __SEQ_H__ /** * \file * \brief Sequence Header */ /** * Sequence Iterator Object * * Instances of this object are created by GET_ITER and used by FOR_ITER. * Stores a pointer to a sequence and an index int16_t. */ typedef struct PmSeqIter_s { /** Object descriptor */ PmObjDesc_t od; /** Sequence object */ pPmObj_t si_sequence; /** Index value */ int16_t si_index; } PmSeqIter_t, *pPmSeqIter_t; /** * Compares two sequences for equality * * @param pobj1 Ptr to first sequence. * @param pobj2 Ptr to second sequence. * @return C_SAME if the seuqences are equivalent, C_DIFFER otherwise. */ int8_t seq_compare(pPmObj_t pobj1, pPmObj_t pobj2); /** * Returns the length of the sequence * * @param pobj Ptr to sequence. * @param r_index Return arg, length of sequence * @return Return status */ PmReturn_t seq_getLength(pPmObj_t pobj, uint16_t *r_index); /** * Returns the object from sequence[index] * * @param pobj Ptr to sequence object to get object from * @param index Int index into the sequence * @param r_pobj Return arg, object from sequence * @return Return status */ PmReturn_t seq_getSubscript(pPmObj_t pobj, int16_t index, pPmObj_t *r_pobj); /** * Returns the next item from the sequence iterator object * * @param pobj Ptr to sequence iterator. * @param r_pitem Return arg, pointer to next item from sequence. * @return Return status. */ PmReturn_t seqiter_getNext(pPmObj_t pobj, pPmObj_t *r_pitem); /** * Returns a new sequence iterator object * * @param pobj Ptr to sequence. * @param r_pobj Return by reference, new sequence iterator * @return Return status. */ PmReturn_t seqiter_new(pPmObj_t pobj, pPmObj_t *r_pobj); #endif /* __SEQ_H__ */