Common Ruby Idioms

前端 未结 15 1984
星月不相逢
星月不相逢 2020-12-07 07:13

One thing I love about ruby is that mostly it is a very readable language (which is great for self-documenting code)

However, inspired by this question: Ruby Code ex

15条回答
  •  不思量自难忘°
    2020-12-07 07:22

    Array.pack and String.unpack for working with binary files:

    # extracts four binary sint32s to four Integers in an Array
    data.unpack("iiii") 
    

提交回复
热议问题