You are here

public function SassLiteral::op_bw_and in Sassy 7.3

Same name and namespace in other branches
  1. 7 phamlp/sass/script/literals/SassLiteral.php \SassLiteral::op_bw_and()

Bitwise AND the value of other and this value

Parameters

string value to bitwise AND with:

Return value

string result

Throws

Exception if bitwise AND not supported for the data type

1 method overrides SassLiteral::op_bw_and()
SassColour::op_bw_and in phpsass/script/literals/SassColour.php
Colour bitwise AND

File

phpsass/script/literals/SassLiteral.php, line 151

Class

SassLiteral
SassLiteral class. Base class for all Sass literals. Sass data types are extended from this class and these override the operation methods to provide the appropriate semantics. @package PHamlP @subpackage Sass.script.literals

Code

public function op_bw_and($other) {
  throw new SassLiteralException(get_class($this) . ' does not support Bitwise AND', SassScriptParser::$context->node);
}