Matter smart home protocol implementation for OCaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use Result.Syntax instead of local let* bindings

Replace `let ( let* ) = Result.bind` with `open Result.Syntax` across
multiple packages: x509, tls, requests, ca-certs, cpio, jsonwt, matter,
tar, spake2, crypto, gpt, mbr.

The stdlib Result.Syntax module provides the same let* operator.

+1 -2
+1 -2
lib/session.ml
··· 8 8 let log_src = Logs.Src.create "matter.session" 9 9 10 10 module Log = (val Logs.src_log log_src : Logs.LOG) 11 - 12 - let ( let* ) = Result.bind 11 + open Result.Syntax 13 12 14 13 (** {1 Types} *) 15 14