LHS : left hand side
RHS : Right hand side
________________________________________
From: Allen Zhang [[email protected]]
Sent: Tuesday, December 22, 2015 19:30
To: [email protected]
Subject: can anyone give me a hint on "lhs" and "rhs"

Hello all,
can anyone give me a hint on "lhs" and "rhs" in Resource.java file
what are they short for?


Thanks,
Allen


for example:


public static Resource addTo(Resource lhs, Resource rhs) {
  lhs.setMemory(lhs.getMemory() + rhs.getMemory());
lhs.setVirtualCores(lhs.getVirtualCores() + rhs.getVirtualCores());
return lhs;
}



Reply via email to