package simple-diff
Simple_diff is a pure OCaml diffing algorithm.
Install
Dune Dependency
Authors
Maintainers
Sources
v0.3.tar.gz
sha256=f6d659f869aaaca2bfdbca0c07acced66b4ab5d19a0a1597754fb5c5d7fc8eb8
md5=4751d72fe03c4b3cc45ad6476bcbe558
README.md.html
Simple Diff
Description
Simple Diff is a pure OCaml implementation of a diffing algorithm ported from https://github.com/paulgb/simplediff.
Usage
opam install simple-diff
Below is some example usage in top/utop:
let old_lines = [| "I"; "really"; "like"; "icecream" |]
let new_lines = [| "I"; "do"; "not"; "like"; "icecream" |]
module Diff = Simple_diff.Make(String);;
open Diff;;
get_diff old_lines new_lines;;
#=> [
Equal [| "I" |];
Deleted [| "really" |];
Added [| "do"; "not" |];
Equal [| "like"; "icecream" |]
]
As displayed above, Simple Diff exposes a Simple_diff.Make
functor which accepts a module that implements the Simple_diff.Comparable
interface (check out the docs for the interface). This makes Simple_diff.S.get_diff
work with lists of elements of whatever you type you want (as long as interface is followed).
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>