tuple_lshtuple_lshTupleLshTupleLshtuple_lsh (算子名称)
名称
tuple_lshtuple_lshTupleLshTupleLshtuple_lsh
— Shift a tuple bitwise to the left.
参数签名
Herror tuple_lsh(const Hlong T, const Hlong Shift, Hlong* Lsh)
Herror T_tuple_lsh(const Htuple T, const Htuple Shift, Htuple* Lsh)
def tuple_lsh(t: MaybeSequence[int], shift: MaybeSequence[int]) -> Sequence[int]
def tuple_lsh_s(t: MaybeSequence[int], shift: MaybeSequence[int]) -> int
描述
tuple_lshtuple_lshTupleLshTupleLshTupleLshtuple_lsh
shifts the tuple TTTTtt
bitwise to the left by
ShiftShiftShiftShiftshiftshift
places. If no overflow occurs, this operation is
equivalent to a multiplication by 2^{ShiftShiftShiftShiftshiftshift
}. If TTTTtt
is negative, the result depends on the hardware. If ShiftShiftShiftShiftshiftshift
is negative or larger than 32, the result is undefined. If both
tuples have the same length the corresponding elements of both
tuples are shifted. Otherwise, either TTTTtt
or ShiftShiftShiftShiftshiftshift
must have length 1. In this case, the operation is performed for
each element of the longer tuple with the single element of the
other tuple. The input tuples must contain only integer numbers.
Exception: Empty input tuples
If either or both of the input tuples are empty, the operator returns an
empty tuple.
HDevelop In-line Operation
HDevelop provides an in-line operation for tuple_lshtuple_lshTupleLshTupleLshTupleLshtuple_lsh
,
which can be used in an expression in the following syntax:
Lsh := lsh(T, Shift)
运行信息
- Multithreading type: independent (runs in parallel even with exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
参数表
TTTTtt
(input_control) integer(-array) →
HTupleMaybeSequence[int]HTupleHtuple (integer) (int / long) (Hlong) (Hlong)
Input tuple.
ShiftShiftShiftShiftshiftshift
(input_control) integer(-array) →
HTupleMaybeSequence[int]HTupleHtuple (integer) (int / long) (Hlong) (Hlong)
Number of places to shift the input tuple.
LshLshLshLshlshlsh
(output_control) integer(-array) →
HTupleSequence[int]HTupleHtuple (integer) (int / long) (Hlong) (Hlong)
Shifted input tuple.
可替代算子
tuple_multtuple_multTupleMultTupleMultTupleMulttuple_mult
参考其它
tuple_rshtuple_rshTupleRshTupleRshTupleRshtuple_rsh
模块
Foundation