From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

1;
=head1 Name
SPVM::Sys::Select::Fd_set - fd_set Type in C Language
=head1 Usage
my $fd_set = Sys::Select::Fd_set->new;
=head1 Description
C<Sys::Select::Fd_set> is the class for the C<fd_set> type in C<C language>.
See L<select(2) - Linux man page|https://linux.die.net/man/2/select> in Linux.
This is a L<pointer class|SPVM::Document::Language/"Pointer Class">.
=head1 Class Methods
=head2 new
static method new : Sys::Select::Fd_set ();
Create a new C<Sys::Select::Fd_set> object.
=head1 Instance Methods
=head2 DESTROY
method DESTROY : void ();
The destructor.
=head2 set
method set : void ($set : Sys::Select::Fd_set);
Sets the value of this object by copying the C<$set>.
=head1 Copyright & License
Copyright 2022-2022 Yuki Kimoto, all rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.