Function modeling::by_files[][src]

pub fn by_files(files: Vec<String>) -> Vec<ClassInfo>

Returns Vec with the given files.

Arguments

  • files - code files in string

Examples

use modeling::{by_files, PlantUmlRender};

let classes = by_files(files);
let puml = PlantUmlRender::render(&classes);