module mod_vtm_aufbau { /** * @author kcf */ export type typ_position = {u : int; v : int;}; /** * @author kcf */ export function position_hash(position : typ_position) : string { return (position.u.toFixed(0) + "_" + position.v.toFixed(0)); } }