コード例 #1
0
ファイル: IoSeq_immutable.c プロジェクト: doublec/io
IO_METHOD(IoSeq, encoding)
{
	/*doc Sequence encoding
	Returns the encoding of the elements. 
	*/

	return IOSYMBOL(CENCODING_name(UArray_encoding(DATA(self))));
}
コード例 #2
0
ファイル: IoSeq_immutable.c プロジェクト: quag/io
IoObject *IoSeq_encoding(IoSeq *self, IoObject *locals, IoMessage *m)
{
	/*doc Sequence encoding
	Returns the encoding of the elements. 
	*/

	return IOSYMBOL(CENCODING_name(UArray_encoding(DATA(self))));
}