Skip to main content

lens/
macros.rs

1//
2// Copyright (c) 2015-2019 Plausible Labs Cooperative, Inc.
3// All rights reserved.
4//
5//
6// Copyright (c) 2025 Julius Foitzik on derivate work
7// All rights reserved.
8//
9
10/// Provides a shorthand for composing a series of lenses.
11#[macro_export]
12macro_rules! compose_lens {
13    { $head:expr } => {
14        $head
15    };
16    { $head:expr, $($tail:expr),+ } => {
17        lens::compose($head, lens::compose_lens!($($tail),+))
18    };
19}