position( )
渡された引数が位置を指定する際に使う値であるか否かを判別するための function です。top
right
bottom
left
center
のいずれかの場合、 true
を返します。それ以外は null
を返します。
1 2 3 4 5 6 7 8 9 | position(top) position(right) position(bottom) $value: left position($value) $value: center position($value) |
上記の場合、position( )
に渡された引数は top
right
bottom
left
center
のいずれかなので true
を返します。
direction( )
渡された引数が方向を指定する際に使う値であるか否かを判別するための function です。top
right
bottom
left
に加え、oulu 独自の値、 horizontal
vertical
all
のいずれかの場合、 true
を返します。それ以外は null
を返します。
1 2 3 4 5 6 7 8 9 | direction(top) direction(right) direction(horizontal) $value: vertical direction($value) $value: all direction($value) |
上記の場合、position( )
に渡された引数は top
right
bottom
left
center
horizontal
vertical
all
のいずれかなので true
を返します。
four_position( )
渡された引数が四方向(上下左右)であるか否かを判別するための function です。top
right
bottom
left
のいずれかの場合、 true
を返します。それ以外は null
を返します。
1 2 3 4 5 6 7 8 | direction(top) direction(right) $value: left direction($value) $value: bottoms direction($value) |
上記の場合、four_direction( )
に渡された引数は top
right
bottom
left
のいずれかなので true
を返します。
top( )
渡された引数が top
かであるか否かを判別するための function です。top
の場合、 true
を返します。それ以外は null
を返します。
1 | top(top) |
上記の場合、position( )
に渡された引数は top
なので true
を返します。
bottom( )
渡された引数が bottom
かであるか否かを判別するための function です。bottom
の場合、 true
を返します。それ以外は null
を返します。
1 | bottom(bottom) |
上記の場合、bottom()
に渡された引数は bottom
なので true
を返します。
left( )
渡された引数が left
かであるか否かを判別するための function です。left
の場合、 true
を返します。それ以外は null
を返します。
1 | left(left) |
上記の場合、left( )
に渡された引数は left
なので true
を返します。
right( )
渡された引数が right
かであるか否かを判別するための function です。right
の場合、 true
を返します。それ以外は null
を返します。
1 | right(right) |
上記の場合、right( )
に渡された引数は right
なので true
を返します。
center( )
渡された引数が center
かであるか否かを判別するための function です。center
の場合、 true
を返します。それ以外は null
を返します。
1 | center(center) |
上記の場合、center( )
に渡された引数は center
なので true
を返します。
position_vertical( )
渡された引数が top
もしくは bottom
であるか否かを判別するための function です。top
もしくは bottom
の場合、 true
を返します。それ以外は null
を返します。
1 2 3 4 | position_vertical(top) $value: bottom position_vertical($value) |
上記の場合、position_vertical( )
に渡された引数は top
もしくは bottom
なので、それぞれ true
を返します。
position_horizontal( )
渡された引数が left
もしくは right
であるか否かを判別するための function です。left
もしくは right
の場合、 true
を返します。それ以外は null
を返します。
1 2 3 4 | position_horizontal(left) $value: right position_horizontal($value) |
上記の場合、osition_horizontall( )
に渡された引数は left
もしくは right
なので、それぞれ true
を返します。
all( )
渡された引数が all
かであるか否かを判別するための function です。all
の場合、 true
を返します。それ以外は null
を返します。
1 | all(all) |
上記の場合、all( )
に渡された引数は all
なので true
を返します。
horizontal( )
渡された引数が horizontal
かであるか否かを判別するための function です。horizontal
の場合、 true
を返します。それ以外は null
を返します。
1 | horizontal(horizontal) |
上記の場合、all()
に渡された引数は all
なので true
を返します。
vertical( )
渡された引数が vertical
かであるか否かを判別するための function です。vertical
の場合、 true
を返します。それ以外は null
を返します。
1 | vertical(vertical) |
上記の場合、vertical( )
に渡された引数は vertical
なので true
を返します。