module Signal

Public Class Methods

supported?(id) click to toggle source

Check if a given signal is supported on the current platform

@param [#to_s] id

the signal ID
# File lib/mb/core_ext/signal.rb, line 7
def supported?(id)
  list.has_key?(id.to_s)
end