Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
A ReasonML/OCaml library for category theory and abstract algebra.
See documentation
Install the project:
yarn install bs-bastet --save
And add the dependency to your bs-dependencies in bsconfig.json
:
"bs-dependencies": [
"bs-bastet"
]
The project will be available under the Bastet
namespace
Install the project:
opam install bastet
# #require "bastet";;
# open Bastet;;
# module T = Functors.ListF.Option.Traversable;;
module T = Bastet.Functors.ListF.Option.Traversable
# T.sequence [Some "foo"; Some "bar"];;
- : string list option = Some ["foo"; "bar"]
# Functors.ListF.Int.Show.show [1; 1; 2; 3; 5; 8];;
- : string = "[1, 1, 2, 3, 5, 8]"
The monadic equivalent of the |>
operator is flat_map
(>>=
). Both are very useful for writing
code that's easy to reason about as data all flows in one direction.
However, function composition (>.
) and kliesli composition for monads (>=>
) are often underused
in code. Composing functions and monads monoidally like this in a concatenative style can make a
codebase easier to read and can also prevent devs on the team from duplicating code.
Consider a typical use case. Often in a codebase you have something that fetches a value that may or
may not exist ('a option
). Splitting out this code into smaller functions and combining (and
reusing) them with composition leads a lean code style:
# let ((>=>)) = Option.Infix.((>=>));;
val ( >=> ) : ('a -> 'b option) -> ('b -> 'c option) -> 'a -> 'c option =
<fun>
# type form = { name: string; address: string option };;
type form = { name : string; address : string option; }
# let get_form () =
(* Assume some side effect got the form here *)
Some { name = "Foo"; address = Some "123 Bar St." };;
val get_form : unit -> form option = <fun>
# let get_address form = form.address;;
val get_address : form -> string option = <fun>
# let get_form_address = get_form >=> get_address;;
val get_form_address : unit -> string option = <fun>
# get_form_address ();;
- : string option = Some "123 Bar St."
For interfaces based on functors, use already instantiated functors if available to avoid the extra boilerplate:
# Functors.ArrayF.Int.Additive.Fold_Map.fold_map
- : ('a -> int) -> 'a array -> int = <fun>
Don't overuse infix operators. If the code is combinatorial it can make it more readable, but in a lot of cases the prefix operators are simpler and easier to read. If you do use infix operators, prefer local opens over global opens to avoid polluting the toplevel:
# let trim_all strings =
let open List.Infix in
StringLabels.trim <$> strings;;
val trim_all : string list -> string list = <fun>
# trim_all ["foo "; "bar"; " baz"];;
- : string list = ["foo"; "bar"; "baz"]
Abbreviated modules can make code both terser and easier to read in some situations, like for example where two different semigroups are used in the same function and infix operators can't be used:
# type game = { score: int; disqualified: bool };;
type game = { score : int; disqualified : bool; }
# let total_score a b =
let module I = Int.Additive.Semigroup in
let module B = Bool.Disjunctive.Semigroup in
{ score = I.append a.score b.score; disqualified = B.append a.disqualified b.disqualified };;
val total_score : game -> game -> game = <fun>
# let result =
let game_1 = { score = 4; disqualified = false }
and game_2 = { score = 2; disqualified = true }
in
total_score game_1 game_2;;
val result : game = {score = 6; disqualified = true}
See LICENSE
FAQs
A ReasonML/OCaml library for category theory and abstract algebra
We found that bs-bastet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.