Module: RubyHDL::High::SEnumerable
- Defined in:
- lib/HDLRuby/std/sequencer_sw.rb
Overview
Module adding functionalities to object including the +seach+ method.
Instance Method Summary collapse
-
#sall?(arg = nil, &ruby_block) ⇒ Boolean
Tell if all the elements respect a given criterion given either as +arg+ or as block.
-
#sany?(arg = nil, &ruby_block) ⇒ Boolean
Tell if any of the elements respects a given criterion given either as +arg+ or as block.
-
#schain(arg) ⇒ Object
Returns an SEnumerator generated from current enumerable and +arg+.
-
#schunk(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby chunk.
-
#schunk_while(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby chunk_while.
-
#scompact ⇒ Object
HW implementation of the Ruby compact, but remove 0 values instead on nil (since nil that does not have any meaning in HW).
-
#scount(obj = nil, &ruby_block) ⇒ Object
WH implementation of the Ruby count.
-
#scycle(n = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby cycle.
-
#sdrop(n) ⇒ Object
HW implementation of the Ruby drop.
-
#sdrop_while(&ruby_block) ⇒ Object
HW implementation of the Ruby drop_while.
-
#seach_cons(n, &ruby_block) ⇒ Object
HW implementation of the Ruby each_cons.
-
#seach_entry(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby each_entry.
-
#seach_nexts(num, &ruby_block) ⇒ Object
Iterator on the +num+ next elements.
-
#seach_range(rng, &ruby_block) ⇒ Object
Iterator on each of the elements in range +rng+.
-
#seach_slice(n, &ruby_block) ⇒ Object
HW implementation of the Ruby each_slice.
-
#seach_with_index(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby each_with_index.
-
#seach_with_object(obj, &ruby_block) ⇒ Object
HW implementation of the Ruby each_with_object.
-
#sfind(if_none_proc, &ruby_block) ⇒ Object
HW implementation of the Ruby find.
-
#sfind_index(obj = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby find_index.
-
#sfirst(n = 1) ⇒ Object
HW implementation of the Ruby first.
-
#sflat_map(&ruby_block) ⇒ Object
HW implementation of the Ruby flat_map.
-
#sgrep(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby grep.
-
#sgrep_v(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby grep_v.
-
#sgroup_by(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby group_by.
-
#sinclude?(obj) ⇒ Boolean
HW implementation of the Ruby include?.
-
#sinject(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby inject.
-
#slazy(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby lazy.
-
#smap(&ruby_block) ⇒ Object
Returns a vector containing the execution result of the given block on each element.
-
#smax(n = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby max.
-
#smax_by(n = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby max_by.
-
#smin(n = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby min.
-
#smin_by(n = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby min_by.
-
#sminmax(&ruby_block) ⇒ Object
HW implementation of the Ruby minmax.
-
#sminmax_by(&ruby_block) ⇒ Object
HW implementation of the Ruby minmax_by.
-
#snone?(arg = nil, &ruby_block) ⇒ Boolean
Tell if none of the elements respects a given criterion given either as +arg+ or as block.
-
#sone?(arg = nil, &ruby_block) ⇒ Boolean
Tell if one and only one of the elements respects a given criterion given either as +arg+ or as block.
-
#spartition(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby partition.
-
#sreduce(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby reduce.
-
#sreject(&ruby_block) ⇒ Object
HW implementatiob of the Ruby reject.
-
#sreverse_each(*args, &ruby_block) ⇒ Object
HW implementatiob of the Ruby reverse_each.
-
#sselect(&ruby_block) ⇒ Object
HW implementation of the Ruby select.
-
#sslice_after(pattern = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby slice_after.
-
#sslice_before(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby slice_before.
-
#sslice_when(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby slice_when.
-
#ssort(&ruby_block) ⇒ Object
HW implementation of the Ruby sort.
-
#ssort_by(&ruby_block) ⇒ Object
HW implementation of the Ruby sort.
-
#ssort_merge(arI, arO, first, middle, last, &ruby_block) ⇒ Object
Merge two arrays in order, for ssort only.
-
#ssum(initial_value = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby sum.
-
#stake(n) ⇒ Object
The HW implementation of the Ruby take.
-
#stake_while(&ruby_block) ⇒ Object
The HW implementation of the Ruby take_while.
-
#stally(h = nil) ⇒ Object
HW implementation of the Ruby tally.
-
#sto_a ⇒ Object
HW implementation of the Ruby to_a.
-
#sto_h(h = nil) ⇒ Object
HW implementation of the Ruby to_h.
-
#suniq(&ruby_block) ⇒ Object
HW implementation of the Ruby uniq.
-
#szip(obj, &ruby_block) ⇒ Object
HW implementation of the Ruby zip.
Instance Method Details
#sall?(arg = nil, &ruby_block) ⇒ Boolean
Tell if all the elements respect a given criterion given either as +arg+ or as block.
229 230 231 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 229 def sall?(arg = nil,&ruby_block) self.seach.sall?(arg,&ruby_block) end |
#sany?(arg = nil, &ruby_block) ⇒ Boolean
Tell if any of the elements respects a given criterion given either as +arg+ or as block.
235 236 237 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 235 def sany?(arg = nil,&ruby_block) self.seach.sany?(arg,&ruby_block) end |
#schain(arg) ⇒ Object
Returns an SEnumerator generated from current enumerable and +arg+
240 241 242 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 240 def schain(arg) self.seach.schain(arg) end |
#schunk(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby chunk. NOTE: to do, or may be not.
246 247 248 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 246 def schunk(*args,&ruby_block) raise "schunk is not supported yet." end |
#schunk_while(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby chunk_while. NOTE: to do, or may be not.
252 253 254 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 252 def schunk_while(*args,&ruby_block) raise "schunk_while is not supported yet." end |
#scompact ⇒ Object
HW implementation of the Ruby compact, but remove 0 values instead on nil (since nil that does not have any meaning in HW).
273 274 275 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 273 def scompact self.seach.scompact(&ruby_block) end |
#scount(obj = nil, &ruby_block) ⇒ Object
WH implementation of the Ruby count.
279 280 281 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 279 def scount(obj = nil, &ruby_block) self.seach.scount(obj,&ruby_block) end |
#scycle(n = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby cycle.
284 285 286 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 284 def scycle(n = nil,&ruby_block) self.seach.scycle(n,&ruby_block) end |
#sdrop(n) ⇒ Object
HW implementation of the Ruby drop.
296 297 298 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 296 def sdrop(n) self.seach.sdrop(n) end |
#sdrop_while(&ruby_block) ⇒ Object
HW implementation of the Ruby drop_while.
301 302 303 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 301 def sdrop_while(&ruby_block) self.seach.sdrop_while(n) end |
#seach_cons(n, &ruby_block) ⇒ Object
HW implementation of the Ruby each_cons
306 307 308 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 306 def seach_cons(n,&ruby_block) self.seach.seach_cons(n,&ruby_block) end |
#seach_entry(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby each_entry. NOTE: to do, or may be not.
312 313 314 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 312 def seach_entry(*args,&ruby_block) raise "seach_entry is not supported yet." end |
#seach_nexts(num, &ruby_block) ⇒ Object
Iterator on the +num+ next elements. NOTE:
- Stop iteration when the end of the range is reached or when there are no elements left
- This is not a method from Ruby but one specific for hardware where creating a array is very expensive.
526 527 528 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 526 def seach_nexts(num,&ruby_block) return self.seach.snexts(num,&ruby_block) end |
#seach_range(rng, &ruby_block) ⇒ Object
Iterator on each of the elements in range +rng+. NOTE:
- Stop iteration when the end of the range is reached or when there are no elements left
- This is not a method from Ruby but one specific for hardware where creating a array is very expensive.
223 224 225 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 223 def seach_range(rng,&ruby_block) self.seach.seach_range(rng,&ruby_block) end |
#seach_slice(n, &ruby_block) ⇒ Object
HW implementation of the Ruby each_slice
317 318 319 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 317 def seach_slice(n,&ruby_block) self.seach.seach_slice(n,&ruby_block) end |
#seach_with_index(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby each_with_index.
322 323 324 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 322 def seach_with_index(*args,&ruby_block) self.seach.swith_index(*args,&ruby_block) end |
#seach_with_object(obj, &ruby_block) ⇒ Object
HW implementation of the Ruby each_with_object.
327 328 329 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 327 def seach_with_object(obj,&ruby_block) self.seach.swith_object(obj,&ruby_block) end |
#sfind(if_none_proc, &ruby_block) ⇒ Object
HW implementation of the Ruby find. NOTE: contrary to Ruby, if_none_proc is mandatory since there is no nil in HW. Moreover, the argument can also be a value.
291 292 293 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 291 def sfind(if_none_proc, &ruby_block) self.seach.sfind(if_non_proc,&ruby_block) end |
#sfind_index(obj = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby find_index.
342 343 344 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 342 def sfind_index(obj = nil, &ruby_block) self.seach.sfind_index(obj,&ruby_block) end |
#sfirst(n = 1) ⇒ Object
HW implementation of the Ruby first.
347 348 349 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 347 def sfirst(n=1) self.seach.sfirst(n) end |
#sflat_map(&ruby_block) ⇒ Object
HW implementation of the Ruby flat_map. NOTE: actually due to the way HDLRuby handles vectors, should work like smap
267 268 269 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 267 def sflat_map(&ruby_block) self.seach.sflat_map(&ruby_block) end |
#sgrep(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby grep. NOTE: to do, or may be not.
353 354 355 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 353 def sgrep(*args,&ruby_block) raise "sgrep is not supported yet." end |
#sgrep_v(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby grep_v. NOTE: to do, or may be not.
359 360 361 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 359 def sgrep_v(*args,&ruby_block) raise "sgrep_v is not supported yet." end |
#sgroup_by(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby group_by. NOTE: to do, or may be not.
365 366 367 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 365 def sgroup_by(*args,&ruby_block) raise "sgroup_by is not supported yet." end |
#sinclude?(obj) ⇒ Boolean
HW implementation of the Ruby include?
370 371 372 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 370 def sinclude?(obj) return self.seach.sinclude?(obj) end |
#sinject(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby inject.
375 376 377 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 375 def sinject(*args,&ruby_block) return self.seach.sinject(*args,&ruby_block) end |
#slazy(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby lazy. NOTE: to do, or may be not.
386 387 388 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 386 def slazy(*args,&ruby_block) raise "slazy is not supported yet." end |
#smap(&ruby_block) ⇒ Object
Returns a vector containing the execution result of the given block on each element. If no block is given, return an SEnumerator. NOTE: be carful that the resulting vector can become huge if there are many element.
260 261 262 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 260 def smap(&ruby_block) self.seach.smap(&ruby_block) end |
#smax(n = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby max.
391 392 393 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 391 def smax(n = nil, &ruby_block) return self.seach.smax(n,&ruby_block) end |
#smax_by(n = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby max_by.
396 397 398 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 396 def smax_by(n = nil, &ruby_block) return self.seach.smax_by(n,&ruby_block) end |
#smin(n = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby min.
401 402 403 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 401 def smin(n = nil, &ruby_block) return self.seach.smin(n,&ruby_block) end |
#smin_by(n = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby min_by.
406 407 408 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 406 def smin_by(n = nil, &ruby_block) return self.seach.smin_by(n,&ruby_block) end |
#sminmax(&ruby_block) ⇒ Object
HW implementation of the Ruby minmax.
411 412 413 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 411 def sminmax(&ruby_block) return self.seach.sminmax(&ruby_block) end |
#sminmax_by(&ruby_block) ⇒ Object
HW implementation of the Ruby minmax_by.
416 417 418 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 416 def sminmax_by(&ruby_block) return self.seach.sminmax_by(&ruby_block) end |
#snone?(arg = nil, &ruby_block) ⇒ Boolean
Tell if none of the elements respects a given criterion given either as +arg+ or as block.
422 423 424 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 422 def snone?(arg = nil,&ruby_block) return self.seach.snone?(arg,&ruby_block) end |
#sone?(arg = nil, &ruby_block) ⇒ Boolean
Tell if one and only one of the elements respects a given criterion given either as +arg+ or as block.
428 429 430 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 428 def sone?(arg = nil,&ruby_block) return self.seach.sone?(arg,&ruby_block) end |
#spartition(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby partition. NOTE: to do, or may be not.
434 435 436 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 434 def spartition(*args,&ruby_block) raise "spartition is not supported yet." end |
#sreduce(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby reduce.
380 381 382 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 380 def sreduce(*args,&ruby_block) return self.seach.sreduce(*args,&ruby_block) end |
#sreject(&ruby_block) ⇒ Object
HW implementatiob of the Ruby reject.
439 440 441 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 439 def sreject(&ruby_block) return self.seach.sreject(&ruby_block) end |
#sreverse_each(*args, &ruby_block) ⇒ Object
HW implementatiob of the Ruby reverse_each.
444 445 446 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 444 def sreverse_each(*args,&ruby_block) return self.seach.sreverse_each(*args,&ruby_block) end |
#sselect(&ruby_block) ⇒ Object
HW implementation of the Ruby select.
337 338 339 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 337 def sselect(&ruby_block) self.seach.sselect(&ruby_block) end |
#sslice_after(pattern = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby slice_after. NOTE: to do, or may be not.
450 451 452 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 450 def sslice_after(pattern = nil,&ruby_block) raise "sslice_after is not supported yet." end |
#sslice_before(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby slice_before. NOTE: to do, or may be not.
456 457 458 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 456 def sslice_before(*args,&ruby_block) raise "sslice_before is not supported yet." end |
#sslice_when(*args, &ruby_block) ⇒ Object
HW implementation of the Ruby slice_when. NOTE: to do, or may be not.
462 463 464 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 462 def sslice_when(*args,&ruby_block) raise "sslice_before is not supported yet." end |
#ssort(&ruby_block) ⇒ Object
HW implementation of the Ruby sort.
472 473 474 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 472 def ssort(&ruby_block) return self.seach.ssort(&ruby_block) end |
#ssort_by(&ruby_block) ⇒ Object
HW implementation of the Ruby sort.
477 478 479 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 477 def ssort_by(&ruby_block) return self.seach.ssort_by(&ruby_block) end |
#ssort_merge(arI, arO, first, middle, last, &ruby_block) ⇒ Object
Merge two arrays in order, for ssort only.
467 468 469 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 467 def ssort_merge(arI, arO, first, middle, last, &ruby_block) return self.seach.ssort_merge(arI,arO,first,middle,last,&ruby_block) end |
#ssum(initial_value = nil, &ruby_block) ⇒ Object
HW implementation of the Ruby sum.
482 483 484 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 482 def ssum(initial_value = nil,&ruby_block) return self.seach.ssum(initial_value,&ruby_block) end |
#stake(n) ⇒ Object
The HW implementation of the Ruby take.
487 488 489 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 487 def stake(n) return self.seach.stake(n) end |
#stake_while(&ruby_block) ⇒ Object
The HW implementation of the Ruby take_while.
492 493 494 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 492 def stake_while(&ruby_block) return self.seach.stake_while(&ruby_block) end |
#stally(h = nil) ⇒ Object
HW implementation of the Ruby tally. NOTE: to do, or may be not.
498 499 500 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 498 def stally(h = nil) raise "stally is not supported yet." end |
#sto_a ⇒ Object
HW implementation of the Ruby to_a.
332 333 334 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 332 def sto_a self.seach.sto_a end |
#sto_h(h = nil) ⇒ Object
HW implementation of the Ruby to_h. NOTE: to do, or may be not.
504 505 506 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 504 def sto_h(h = nil) raise "sto_h is not supported yet." end |
#suniq(&ruby_block) ⇒ Object
HW implementation of the Ruby uniq.
509 510 511 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 509 def suniq(&ruby_block) return self.seach.suniq(&ruby_block) end |
#szip(obj, &ruby_block) ⇒ Object
HW implementation of the Ruby zip. NOTE: for now szip is deactivated untile tuples are properly handled by HDLRuby.
516 517 518 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 516 def szip(obj,&ruby_block) return self.seach.szip(obj,&ruby_block) end |