cattocol

Combine two text into one text as columns or by lines.

Examples

```rust

use cattocol::CatToCol;

let txtone = String::from("Text cat\nby line.\nTest line."); let txttwo = String::from("Concat text.\nTwo line.\nMin.\nMax"); let cattocol = CatToCol::new().fill(' ').repeat(1); let combineiter = cattocol.combinecol(&txtone, &txttwo);

println!("{}", combine_iter.collect::());

//Text cat Concat text. //by line. Two line. //Test line. Min. // Max ```

License

GNU General Public License v3.0