RLPark 1.0.0
Reinforcement Learning Framework in Java
|
00001 package rlpark.plugin.robot.internal.disco.datatype; 00002 00003 import rlpark.plugin.robot.internal.sync.LiteByteBuffer; 00004 00005 00006 public interface ScalarReader extends Ranged { 00007 int getInt(LiteByteBuffer buffer); 00008 00009 double getDouble(LiteByteBuffer buffer); 00010 }