Module CoreEx::Object::TheFirstTime
In: lib/core_ex/object/the_first_time.rb

Methods

Public Instance methods

just_once( &block )

Alias for the_first_time

[Source]

# File lib/core_ex/object/the_first_time.rb, line 15
      def the_first_time ( &block )
        id = block.source_file
        return if @@set.include? id
        @@set << id
        block[]
      end

[Validate]