Beispiel #1
0
 public static Io_url Eval_url(Bry_fmtr_eval_mgr eval_mgr, byte[] fmt) {
   if (eval_mgr == null) return Io_url_.new_any_(String_.new_u8(fmt));
   Bry_bfr bfr = Bry_bfr.reset_(255);
   Bry_fmtr fmtr = Bry_fmtr.tmp_();
   fmtr.Eval_mgr_(eval_mgr).Fmt_(fmt).Bld_bfr_none(bfr);
   return Io_url_.new_any_(bfr.Xto_str_and_clear());
 }
Beispiel #2
0
	public String Bld_str_many(Bry_bfr bfr, String fmt, Object... args) {
		this.Fmt_(fmt).Bld_bfr_many(bfr, args);
		return bfr.Xto_str_and_clear();
	}