本文整理汇总了Python中gauged.structures.FloatArray.values方法的典型用法代码示例。如果您正苦于以下问题:Python FloatArray.values方法的具体用法?Python FloatArray.values怎么用?Python FloatArray.values使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gauged.structures.FloatArray
的用法示例。
在下文中一共展示了FloatArray.values方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_array_append
# 需要导入模块: from gauged.structures import FloatArray [as 别名]
# 或者: from gauged.structures.FloatArray import values [as 别名]
def test_array_append(self):
s = FloatArray([1, 2, 3])
s.append(4)
s.append(10)
self.assertEqual(s.byte_length(), 20)
self.assertListEqual(s.values(), [1, 2, 3, 4, 10])
s.free()
示例2: test_array_buffer_offset
# 需要导入模块: from gauged.structures import FloatArray [as 别名]
# 或者: from gauged.structures.FloatArray import values [as 别名]
def test_array_buffer_offset(self):
s = FloatArray([1, 2, 3])
buf = s.buffer(byte_offset=4)
s.free()
self.assertEqual(len(buf), 8)
copy = FloatArray(buf, 8)
self.assertListEqual(copy.values(), [2, 3])
copy.free()
示例3: test_use_array_after_free_error
# 需要导入模块: from gauged.structures import FloatArray [as 别名]
# 或者: from gauged.structures.FloatArray import values [as 别名]
def test_use_array_after_free_error(self):
s = FloatArray()
s.free()
with self.assertRaises(GaugedUseAfterFreeError):
len(s)
with self.assertRaises(GaugedUseAfterFreeError):
s.values()
with self.assertRaises(GaugedUseAfterFreeError):
s.values()
with self.assertRaises(GaugedUseAfterFreeError):
s.append(1)
with self.assertRaises(GaugedUseAfterFreeError):
s.byte_length()
with self.assertRaises(GaugedUseAfterFreeError):
s.buffer()
with self.assertRaises(GaugedUseAfterFreeError):
s.clear()
示例4: test_array_import_export_using_buffer
# 需要导入模块: from gauged.structures import FloatArray [as 别名]
# 或者: from gauged.structures.FloatArray import values [as 别名]
def test_array_import_export_using_buffer(self):
s = FloatArray([1, 2, 3])
buf = buffer(s.buffer())
s.free()
self.assertEqual(len(buf), 12)
copy = FloatArray(buf, 12)
self.assertListEqual(copy.values(), [1, 2, 3])
copy.free()
s = FloatArray()
self.assertEqual(s.buffer(), None)
s.free()
示例5: test_array_import_export
# 需要导入模块: from gauged.structures import FloatArray [as 别名]
# 或者: from gauged.structures.FloatArray import values [as 别名]
def test_array_import_export(self):
s = FloatArray([1, 2, 3])
buf = str(s.buffer())
s.free()
self.assertEqual(len(buf), 12)
copy = FloatArray(buf, 12)
self.assertEqual(copy.values(), [1, 2, 3])
copy.free()
s = FloatArray()
self.assertIsNone(s.buffer())
s.free()
示例6: test_array_instantiation_from_list
# 需要导入模块: from gauged.structures import FloatArray [as 别名]
# 或者: from gauged.structures.FloatArray import values [as 别名]
def test_array_instantiation_from_list(self):
s = FloatArray([1, 2, 3])
self.assertEqual(s.byte_length(), 12)
self.assertEqual(len(s), 3)
self.assertListEqual(s.values(), [1, 2, 3])
s.free()
示例7: test_array_empty_array
# 需要导入模块: from gauged.structures import FloatArray [as 别名]
# 或者: from gauged.structures.FloatArray import values [as 别名]
def test_array_empty_array(self):
s = FloatArray()
self.assertEqual(s.byte_length(), 0)
self.assertEqual(len(s), 0)
self.assertListEqual(s.values(), [])
s.free()