Sha256: a3ff2584b9bd41184f76792e7f575f4689b7ccb0f9f79a09cc8077c67515f523
Contents?: true
Size: 527 Bytes
Versions: 5
Compression:
Stored size: 527 Bytes
Contents
# Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. module Wx module STC class StyledTextCtrl # Overload to provide Enumerator without block wx_each_line = instance_method :each_line define_method :each_line do |&block| if block wx_each_line.bind(self).call(&block) else ::Enumerator.new { |y| wx_each_line.bind(self).call { |ln| y << ln } } end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems