Skip to content

jhawthorn/unsafe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Unsafe

Have you ever been annoyed that Ruby prevents you from accessing out of bounds elements from Strings or Arrays?

unsafe unlocks the full potential of your Ruby programs by allowing accessing and modifying out of bounds memory!

$ gem i unsafe
$ irb
>> require "unsafe"
>> arr = [1,2,3]
=> [1, 2, 3]
>> unsafe { arr[1] }
=> 2
>> unsafe { arr[2] }
=> 3
>> unsafe { arr[3] }
=> 2.000000000000003
>> unsafe { arr[-1] }
=> Array
>> unsafe { arr[1000000000] }
[BUG] Segmentation fault at 0x00000002f89824d0

-- Crash Report log information --------------------------------------------
   See Crash Report log file in one of the following locations:
>> str = "hello, world"
=> "hello, world"
>> unsafe { str[-8, 8] }.unpack1("Q")
=> 12
>> str.length
=> 12

FAQ

Should I use this?

Yes

My program keeps crashing

unsafe works best when paired with neversaydie

About

Just like in Rust!

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published