---
title: ".<(_:_:)"
framework: swift
role: symbol
role_heading: Operator
path: "swift/simd2/'._(_:_:)-7tlry"
---

# .<(_:_:)

Pointwise compare less than.

## Declaration

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

## Discussion

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