How to Install and Uninstall ocaml-camlp-streams Package on openSuSE Tumbleweed

Last updated: June 25,2024

1. Install "ocaml-camlp-streams" package

This guide covers the steps necessary to install ocaml-camlp-streams on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install ocaml-camlp-streams

2. Uninstall "ocaml-camlp-streams" package

This tutorial shows how to uninstall ocaml-camlp-streams on openSuSE Tumbleweed:

$ sudo zypper remove ocaml-camlp-streams

3. Information about the ocaml-camlp-streams package on openSuSE Tumbleweed

Information for package ocaml-camlp-streams:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : ocaml-camlp-streams
Version : 5.0.1-2.7
Arch : x86_64
Vendor : openSUSE
Installed Size : 45.6 KiB
Installed : No
Status : not installed
Source package : ocaml-camlp-streams-5.0.1-2.7.src
Upstream URL : https://opam.ocaml.org/packages/camlp-streams
Summary : Stream and Genlex libraries for use with Camlp5
Description :
The camlp-streams package provides two library modules:
Stream: imperative streams, with in-place update and memoization of the latest element produced.
Genlex: a small parameterized lexical analyzer producing streams of tokens from streams of characters.
The two modules are designed for use with Camlp5:
The stream patterns and stream expressions of Camlp5 consume and produce data of type 'a Stream.t.
The Genlex tokenizer can be used as a simple lexical analyzer for Camlp5-generated parsers.
The Stream module can also be used by hand-written recursive-descent parsers, but is not very convenient for this purpose.
The Stream and Genlex modules have been part of the OCaml standard library for a long time, and have been distributed as part of the core OCaml system. They will be removed from the OCaml standard library at some future point, but will be maintained and distributed separately in this camlp-streams package.