⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
lib
/
ruby
/
gems
/
3.0.0
/
gems
/
rbs-1.0.4
/
core
/
View File Name :
struct.rbs
# A [Struct](Struct) is a convenient way to bundle a # number of attributes together, using accessor methods, without having to # write an explicit class. # # The [Struct](Struct) class generates new subclasses # that hold a set of members and their values. For each member a reader # and writer method is created similar to # [Module\#attr\_accessor](https://ruby-doc.org/core-2.6.3/Module.html#method-i-attr_accessor) # . # # ```ruby # Customer = Struct.new(:name, :address) do # def greeting # "Hello #{name}!" # end # end # # dave = Customer.new("Dave", "123 Main") # dave.name #=> "Dave" # dave.greeting #=> "Hello Dave!" # ``` # # See [::new](Struct#method-c-new) for further # examples of creating struct subclasses and instances. # # In the method descriptions that follow, a "member" parameter refers to a # struct member which is either a quoted string ( `"name"` ) or a # [Symbol](https://ruby-doc.org/core-2.6.3/Symbol.html) ( `:name` ). class Struct[Elem] < Object include Enumerable[Elem] type attribute_name = Symbol | String def initialize: (attribute_name, *attribute_name, ?keyword_init: boolish) ?{ () -> void } -> void def each: () { (Elem) -> untyped } -> untyped def self.members: () -> ::Array[Symbol] end