Flowdock
method

apply_mask

Importance_0
v2_2_9 - Show latest stable - 0 notes - Class: FileUtils
apply_mask(mode, user_mask, op, mode_mask) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/fileutils.rb, line 892
  def apply_mask(mode, user_mask, op, mode_mask)
    case op
    when '='
      (mode & ~user_mask) | (user_mask & mode_mask)
    when '+'
      mode | (user_mask & mode_mask)
    when '-'
      mode & ~(user_mask & mode_mask)
    end
  end
Register or log in to add new notes.