extern crate alloc;
use alloc::string::String;
use crate::functions::to_dot_to_dot_alt_b::to_dot_type_pack_id_to_dot_options;
use crate::records::to_dot_options::ToDotOptions;
use crate::type_aliases::type_pack_id::TypePackId;
pub fn to_dot(tp: TypePackId) -> String {
to_dot_type_pack_id_to_dot_options(tp, &ToDotOptions::default())
}