---
title: ".<(_:_:)"
framework: swift
role: symbol
role_heading: Operator
path: "swift/simd16/'._(_:_:)-49cs"
---

# .<(_:_:)

Pointwise compare less than.

## Declaration

```swift
static func .< (a: Scalar, b: SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>
```

## Discussion

Discussion Each lane of the result is true if a is less than the corresponding lane of b, and false otherwise. Equivalent to: var result = SIMDMask<MaskStorage>() for i in 0..<16 {   result[i] = (a < b[i]) }
