bytes_heavy.pl 758 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package bytes;
  2. sub length (_) {
  3. BEGIN { bytes::import() }
  4. return CORE::length($_[0]);
  5. }
  6. sub substr ($$;$$) {
  7. BEGIN { bytes::import() }
  8. return
  9. @_ == 2 ? CORE::substr($_[0], $_[1]) :
  10. @_ == 3 ? CORE::substr($_[0], $_[1], $_[2]) :
  11. CORE::substr($_[0], $_[1], $_[2], $_[3]) ;
  12. }
  13. sub ord (_) {
  14. BEGIN { bytes::import() }
  15. return CORE::ord($_[0]);
  16. }
  17. sub chr (_) {
  18. BEGIN { bytes::import() }
  19. return CORE::chr($_[0]);
  20. }
  21. sub index ($$;$) {
  22. BEGIN { bytes::import() }
  23. return
  24. @_ == 2 ? CORE::index($_[0], $_[1]) :
  25. CORE::index($_[0], $_[1], $_[2]) ;
  26. }
  27. sub rindex ($$;$) {
  28. BEGIN { bytes::import() }
  29. return
  30. @_ == 2 ? CORE::rindex($_[0], $_[1]) :
  31. CORE::rindex($_[0], $_[1], $_[2]) ;
  32. }
  33. 1;