Beispiel #1
0
 def __init__(self, nbits=32):
     VGeneric.__init__(self)
     self.nbits = nbits
Beispiel #2
0
 def __init__(self, el_type, alloc_count):
     VGeneric.__init__(self)
     self.el_type = el_type
     self.alloc_count = alloc_count
Beispiel #3
0
 def __init__(self, nbits=32):
     VGeneric.__init__(self)
     self.nbits = nbits
Beispiel #4
0
 def __init__(self, el_type, alloc_count):
     VGeneric.__init__(self)
     self.el_type = el_type
     self.alloc_count = alloc_count
Beispiel #5
0
 def __init__(self, el_init, count):
     VGeneric.__init__(self)
     self.el_init = el_init
     self.count = count
     if not count:
         raise TypeError("Arrays must have at least one element")