Method: Tensor#indicies
- Defined in:
- lib/m500.rb
#indicies ⇒ Object
3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 |
# File 'lib/m500.rb', line 3267 def indicies z = self.public_methods x = [] z.each{|y| y =~ %r{(_(?!_.*)(?!methods)(?!variable.*)(?!defined.)(?!eval)(?!send)(?!at)(?!get|set)(?!a|s|h)(?!id.*)(?!.*=$)(?!.*\?$).*)} unless $1 == nil then x << $1 end y =~ %r{(U(?!U.*)(?!.*=$).*)} unless $1 == nil then x << $1 end } x.delete("_") return x end |